in Technology by

Explain @javax.ejb.ActivationConfigProperty annotation.

Please log in or register to answer this question.

1 Answer

0 votes
by

@javax.ejb.ActivationConfigProperty annotation is used to specify properties required for a message driven bean. For example end point, destination, message selector etc.

This annotation is passed as a parameter to activationConfig attribute of javax.ejb.MessageDrivenBean annotation. Following are its attributes:

  • propertyName - name of the property.

  • propertyValue - value of the property.

Related questions

...