Programming WebLogic Enterprise JavaBeans, Version 3.0
EJB 3.0 Metadata Annotations Reference
The following topics provide reference information about the EJB 3.0 metadata annotations:
- Overview of EJB 3.0 Annotations
- Annotations for Stateless, Stateful, and Message-Driven Beans
- Annotations Used to Configure Interceptors
- Annotations Used to Interact With Entity Beans
- Standard JDK Annotations Used By EJB 3.0
- Standard Security-Related JDK Annotations Used by EJB 3.0
- WebLogic Kodo Annotations
Overview of EJB 3.0 Annotations
The new EJB 3.0 programming model uses the JDK 5.0 metadata annotations feature in which you create an annotated EJB 3.0 bean file and then use the WebLogic compile tool weblogic.appc (or its Ant equivalent wlappc) to compile the bean file into a Java class file and generate the associated EJB artifacts, such as the required EJB interfaces and deployment descriptors.
The following sections provide reference information for the metadata annotations you can specify in the EJB bean file. Some of the annotations are in the javax.ejb package, and are thus specific to EJBs; others are more common and are used by other Java Platform, Enterprise Edition (Java EE) Version 5 components, and are thus in more generic packages, such as javax.annotation.
Annotations for Stateless, Stateful, and Message-Driven Beans
This section provides reference information for the following annotations:
- javax.ejb.ActivationConfigProperty
- javax.ejb.ApplicationException
- javax.ejb.EJB
- javax.ejb.EJBs
- javax.ejb.Init
- javax.ejb.Local
- javax.ejb.LocalHome
- javax.ejb.MessageDriven
- javax.ejb.PostActivate
- javax.ejb.PrePassivate
- javax.ejb.Remote
- javax.ejb.RemoteHome
- javax.ejb.Remove
- javax.ejb.Stateful
- javax.ejb.Stateless
- javax.ejb.Timeout
- javax.ejb.TransactionAttribute
- javax.ejb.TransactionManagement
javax.ejb.ActivationConfigProperty
Description
Target: Any
Specifies properties used to configure a message-driven bean in its operational environment. This may include information about message acknowledgement modes, message selectors, expected destination or endpoint types, and so on.
This annotation is used only as a value to the activationConfig attribute of the @javax.ejb.MessageDriven annotation.
Attributes
javax.ejb.ApplicationException
Description
Target: Class
Specifies that an exception is an application exception and that it should be reported to the client application directly, or unwrapped.
This annotation can be applied to both checked and unchecked exceptions.
Attributes
javax.ejb.EJB
Description
Target: Class, Method, Field
Specifies a dependency or reference to an EJB business or home interface.
You annotate a bean's instance variable with the @EJB annotation to specify a dependence on another EJB. WebLogic Server automatically initializes the annotated variable with the reference to the EJB on which it depends; this is also called dependency injection. This initialization occurs before any of the bean's business methods are invoked and after the bean's EJBContext is set.
You can also annotate a setter method in the bean class; in this case WebLogic Server uses the setter method itself when performing dependency injection. This is an alternative to instance variable dependency injection.
If you apply the annotation to a class, the annotation declares the EJB that the bean will look up at runtime.
Whether using variable or setter method injection, WebLogic Server determines the name of the referenced EJB by either the name or data type of the annotated instance variable or setter method parameter. If there is any ambiguity, you should use the beanName or mappedName attributes of the @EJB annotation to explicitly name the dependent EJB.
Attributes
String No description Describes the EJB reference. String No
javax.ejb.EJBs
Description
Target: Class
Specifies an array of @javax.ejb.EJB annotations.
Attribute
Table A-4 Attribute of the javax.ejb.EJBs Annotation Name Description Data Type Required? value Specifies the array of @javax.ejb.EJB annotations EJB[] No
javax.ejb.Init
Description
Target: Method
Specifies the correspondence of a method in the bean class with a createMETHOD method for an adapted EJB 2.1 EJBHome or EJBLocalHome client view.
This annotation is used only in conjunction with stateful session beans, or those that have been annotated with the @javax.ejb.Stateful class-level annotation,
The return type of a method annotated with the @javax.ejb.Init annotation must be void, and its parameter types must be exactly the same as those of the referenced createMETHOD method or methods.
The @Init annotation is required only for stateful session beans that provide a Remote-Home or LocalHome interface. You must specify the name of the adapted create method of the Home or LocalHome interface, using the value attribute, if there is any ambiguity.
Attributes
javax.ejb.Local
Description
Target: Class
Specifies the local interface or interfaces of a session bean. The local interface exposes business logic to local clients—those running in the same application as the EJB. It defines the business methods a local client can call.
You are required to specify this annotation if your bean class implements more than a single interface, not including the following:
- java.io.Serializable
- java.io.Externalizable
- javax.ejb.*
This annotation applies only to stateless or stateful session beans.
Attributes
javax.ejb.LocalHome
Description
Target: Class
Specifies the local home interface of the bean class.
The local home interface provides methods that local clients—those running in the same application as the EJB—can use to create, remove, and in the case of an entity bean, find instances of the bean. The local home interface also has home methods—business logic that is not specific to a particular bean instance.
This attribute applies only to stateless and stateful session beans.
You typically specify this attribute only if you are going to provide an adapted EJB 2.1 component view of the EJB 3.0 bean. You can also use this annotation with bean classes that have been written to the EJB 2.1 APIs.
Attributes
Table A-7 Attributes of the javax.ejb.LocalHome Annotation Name Description Data Type Required? value Local home class. Class Yes.
javax.ejb.MessageDriven
Description
Target: Class
Specifies that the Enterprise JavaBean is a message-driven bean.
Attributes
Table A-8 Attributes of the javax.ejb.MessageDriven Annotation Name Description Data Type Required? name Name of the message-driven bean. If you do not specify this attribute, the default value is the unqualified name of the bean class. String No. messageListenerInterface Specifies the message-listener interface of the bean class. You must specify this attribute if the bean class does not explicitly implement the message-listener interface, or if the bean class implements more than one interface other than java.io.Serializable, java.io.Externalizable, or any of the interfaces in the javax.ejb package. The default value for this attribute is Object.class. Class No. activationConfig Specifies the configuration of the message-driven bean in its operational environment. This may include information about message acknowledgement modes, message selectors, expected destination or endpoint types, and so on. You specify activation configuration information using an Array of @javax.ejb.ActivationConfigProperty annotation, specify the property name and value. ActivationConfigProperty[] No. mappedName Specifies the product-specific name to which the message-driven bean should be mapped. You can also use this attribute to specify the JNDI name of the message destination of this message-driven bean. For example: mappedName="my.Queue" specifies that this message-driven bean is associated with a JMS queue, whose JNDI name is my.Queue and is deployed in the WebLogic Server JNDI tree.
If you specify this attribute, the message-driven bean may not be portable.
String No description Description of the message-driven bean. String No
javax.ejb.PostActivate
Description
Target: Method
Specifies the life cycle callback method that signals that the EJB container has just reactivated the bean instance.
This annotation applies only to stateful session beans. Because the EJB container automatically maintains the conversational state of a stateful session bean instance when it is passivated, you do not need to specify this annotation for most stateful session beans. You only need to use this annotation, along with its partner @PrePassivate, if you want to allow your stateful session bean to maintain the open resources that need to be closed prior to a bean instance's passivation and then reopened during the bean instance's activation.
Only one method in the bean class can be annotated with this annotation. If you annotate more than one method with this annotations, the EJB will not deploy.
The method annotated with @PostActivate must follow these requirements:
- The return type of the method must be void.
- The method must not throw a checked exception.
- The method may be public, protected, package private or private.
- The method must not be static.
- The method must not be final.
This annotation does not have any attributes.
javax.ejb.PrePassivate
Description
Target: Method
Specifies the life cycle callback method that signals that the EJB container is about to passivate the bean instance.
This annotation applies only to stateful session beans. Because the EJB container automatically maintains the conversational state of a stateful session bean instance when it is passivated, you do not need to specify this annotation for most stateful session beans. You only need to use this annotation, along with its partner @PostActivate, if you want to allow your stateful session bean to maintain the open resources that need to be closed prior to a bean instance's passivation and then reopened during the bean instance's activation.
Only one method in the bean class can be annotated with this annotation. If you annotate more than one method with this annotations, the EJB will not deploy.
The method annotated with @PrePassivate must follow these requirements:
- The return type of the method must be void.
- The method must not throw a checked exception.
- The method may be public, protected, package private or private.
- The method must not be static.
- The method must not be final.
This annotation does not have any attributes.
javax.ejb.Remote
Description
Target: Class
Specifies the remote interface or interfaces of a session bean. The remote interface exposes business logic to remote clients—clients running in a separate application from the EJB. It defines the business methods a remote client can call.
This annotation applies only to stateless or stateful session beans.
Attributes
javax.ejb.RemoteHome
Description
Target: Class
Specifies the remote home interface of the bean class.
The remote home interface provides methods that remote clients—those running in a separate application from the EJB—can use to create, remove, and find instances of the bean.
This attribute applies only to stateless and stateful session beans.
You typically specify this attribute only if you are going to provide an adapted EJB 2.1 component view of the EJB 3.0 bean. You can also use this annotation with bean classes that have been written to the EJB 2.1 APIs.
Attributes
Table A-10 Attributes of the javax.ejb.RemoteHome Annotation Name Description Data Type Required? value Specifies the remote home class. Class Yes.
javax.ejb.Remove
Description
Target: Method
Use the @javax.ejb.Remove annotation to denote a remove method of a stateful session bean.
When the method completes, the EJB container will invoke the method annotated with the @javax.annotation.PreDestroy annotation, if any, and then destroy the stateful session bean.
Attributes
javax.ejb.Stateful
Description
Target: Class
Specifies that the Enterprise JavaBean is a stateful session bean.
Attributes
String No. description Describes the stateful session bean. String No.
javax.ejb.Stateless
Description
Target: Class
Specifies that the Enterprise JavaBean is a stateless session bean.
Attributes
String No. description Describes the stateless session bean. String No.
javax.ejb.Timeout
Description
Target: Method
Specifies the timeout method of the bean class.
This annotation makes it easy to program an EJB timer service in your bean class. The EJB timer service is an EJB-container provided service that allows you to create timers that schedule callbacks to occur when a timer object expires.
Previous to EJB 3.0, your bean class was required to implement javax.ejb.TimedObject if you wanted to program the timer service. Additionally, your bean class had to include a method with the exact name ejbTimeout. These requirements are relaxed in Version 3.0 of EJB. You no longer are required to implement the javax.ejb.TimedObject interface, and you can name your timeout method anything you want, as long as you annotate it with the @Timeout annotation. You can, however, continue to use the pre-3.0 way of programming the timer service if you want.
For details, see Programming the EJB Timer Service.
This annotation does not have any attributes.
javax.ejb.TransactionAttribute
Description
Target: Class, Method
Whether the EJB container invokes an EJB business method within a transaction context.
WARNING: If you specify this annotation, you are also required to use the @TransactionManagement annotation to specify container-managed transaction demarcation. You can specify this annotation on either the bean class, or a particular method of the class that is also a method of the business interface. If specified at the bean class, the annotation applies to all applicable business interface methods of the class. If specified for a particular method, the annotation applies to that method only. If the annotation is specified at both the class and the method level, the method value overrides if the two disagree.
If you do not specify the @TransactionAttribute annotation in your bean class, and the bean uses container managed transaction demarcation, the semantics of the REQUIRED transaction attribute are assumed.
Attributes
Table A-14 Attributes of the javax.ejb.TransactionAttribute Annotation Name Description Data Type Required? value Specifies how the EJB container manages the transaction boundaries when invoking a business method. For details about these values, see the description of the trans-attribute element in the Container-Managed Transactions Elements table. Valid values for this attribute are: Default value is TransactionAttributeType.REQUIRED.
- TransactionAttributeType.MANDATORY
- TransactionAttributeType.REQUIRED
- TransactionAttributeType.REQUIRED_NEW
- TransactionAttributeType.SUPPORTS
- TransactionAttributeType.NOT_SUPPORTED
- TransactionAttributeType.NEVER
TransactionAttributeType No.
javax.ejb.TransactionManagement
Description
Target: Class
Specifies the transaction management demarcation type of the session bean or message-driven bean.
A transaction is a unit of work that changes application state—whether on disk, in memory or in a database—that, once started, is completed entirely, or not at all. Transactions can be demarcated—started, and ended with a commit or rollback—by the EJB container, by bean code, or by client code. This annotation specifies whether the EJB container or the user-written bean code manages the demarcation of a transaction.
If you do not specify this annotation in your bean class, it is assumed that the bean has container-managed transaction demarcation.
For additional information about transactions, see Transaction Design and Management Options.
Attributes
Annotations Used to Configure Interceptors
This section provides reference information for the following annotations:
- javax.interceptor.AroundInvoke
- javax.interceptor.ExcludeClassInterceptors
- javax.interceptor.ExcludeDefaultInterceptors
- javax.interceptor.Interceptors
javax.interceptor.AroundInvoke
Description
Target: Method
Specifies the business method interceptor for either a bean class or an interceptor class.
You can annotate only one method in the bean class or interceptor class with the @AroundInvoke annotation; the method cannot be a business method of the bean class.
This annotation does not have any attributes.
javax.interceptor.ExcludeClassInterceptors
Description
Target: Method
Specifies that any class-level interceptors should not be invoked for the annotated method. This does not include default interceptors, whose invocation are excluded only with the @ExcludeDefaultInterceptors annotation.
This annotation does not have any attributes.
javax.interceptor.ExcludeDefaultInterceptors
Description
Target: Class, Method
Specifies that any defined default interceptors (which can be specified only in the EJB deployment descriptors, and not with annotations) should not be invoked.
If defined at the class-level, the default interceptors are never invoked for any of the bean's business methods. If defined at the method-level, the default interceptors are never invoked for the particular business method, but they are invoked for all other business methods that do not have the @ExludeDefaultInterceptors annotation.
This annotation does not include any attributes.
javax.interceptor.Interceptors
Description
Target: Class, Method
Specifies the interceptor classes that are associated with the bean class or method. An interceptor class is a class—distinct from the bean class itself—whose methods are invoked in response to business method invocations and/or life cycle events on the bean.
The interceptor class can include both an business interceptor method (annotated with the @javax.interceptor.AroundInvoke annotation) and life cycle callback methods (annotated with the @javax.annotation.PostConstruct, @javax.annotation.PreDestroy, @javax.ejb.PostActivate, and @javax.ejb.PrePassivate annotations).
Any number of interceptor classes may be defined for a bean class. If more than one interceptor class is defined, they are invoked in the order they are specified in the annotation.
If the annotation is specified at the class-level, the interceptors apply to all business methods of the EJB. If specified at the method-level, the interceptors apply to just that method. You can specify the same interceptor class to more than one method of the bean class. By default, method-level interceptors are invoked after all applicable interceptors (default interceptors, class-level interceptors, and so on).
Attributes
Annotations Used to Interact With Entity Beans
This section provides reference information about the following annotations:
- javax.persistence.PersistenceContext
- javax.persistence.PersistenceContexts
- javax.persistence.PersistenceUnit
- javax.persistence.PersistenceUnits
javax.persistence.PersistenceContext
Description
Target: Class, Method, Field
Specifies a dependency on a container-managed EntityManager persistence context.
You use this annotation to interact with a 3.0 entity bean, typically by performing dependency injection into an EntityManager instance.
The EntityManager interface defines the methods that are used to interact with the persistence context. A persistence context is a set of entity instances; an entity is a lightweight persistent domain object. The EntityManager API is used to create and remove persistent entity instances, to find entities by their primary key, and to query over entities.
Attributes
String No. type Whether the lifetime of the persistence context is scoped to a transaction or whether it extends beyond that of a single transaction. Valid values for this attribute are: Default value is PersistenceContextType.TRANSACTION.
- PersistenceContextType.TRANSACTION
- PersistenceContextType.EXTENDED
PersistenceContextType No.
javax.persistence.PersistenceContexts
Description
Target: Class
Specifies an array of @javax.persistence.PersistencContext annotations.
Attributes
javax.persistence.PersistenceUnit
Description
Target: Class, Method, Field
Specifies a dependency on an EntityManagerFactory object.
You use this annotation to interact with a 3.0 entity bean, typically by performing dependency injection into an EntityManagerFactory instance. You can then use the EntityManagerFactory to create one or more EntityManager instances. This annotation is similar to the @PersistenceContext annotation, except that it gives you more control over the life of the EntityManager because you create and destroy it yourself, rather than let the EJB container do it for you.
The EntityManager interface defines the methods that are used to interact with the persistence context. A persistence context is a set of entity instances; an entity is a lightweight persistent domain object. The EntityManager API is used to create and remove persistent entity instances, to find entities by their primary key, and to query over entities.
Attributes
javax.persistence.PersistenceUnits
Description
Target: Class
Specifies an array of @javax.persistence.PersistenceUnit annotations.
Attributes
Standard JDK Annotations Used By EJB 3.0
This section provides reference information about the following annotations:
- javax.annotation.PostConstruct
- javax.annotation.PreDestroy
- javax.annotation.Resource
- javax.annotation.Resources
javax.annotation.PostConstruct
Description
Target: Method
Specifies the life cycle callback method that the EJB container should execute before the first business method invocation and after dependency injection is done to perform any initialization.
You may specify a @PostConstruct method in any bean class that includes dependency injection.
Only one method in the bean class can be annotated with this annotation. If you annotate more than one method with this annotations, the EJB will not deploy.
The method annotated with @PostConstruct must follow these requirements:
- The return type of the method must be void.
- The method must not throw a checked exception.
- The method may be public, protected, package private or private.
- The method must not be static.
- The method must not be final.
This annotation does not have any attributes.
javax.annotation.PreDestroy
Description
Target: Method
Specifies the life cycle callback method that signals that the bean class instance is about to be destroyed by the EJB container. You typically apply this annotation to methods that release resources that the bean class has been holding.
Only one method in the bean class can be annotated with this annotation. If you annotate more than one method with this annotations, the EJB will not deploy.
The method annotated with @PreDestroy must follow these requirements:
- The return type of the method must be void.
- The method must not throw a checked exception.
- The method may be public, protected, package private or private.
- The method must not be static.
- The method must not be final.
This annotation does not have any attributes.
javax.annotation.Resource
Description
Target: Class, Method, Field
Specifies a dependence on an external resource, such as a JDBC data source or a JMS destination or connection factory.
If you specify the annotation on a field or method, the EJB container injects an instance of the requested resource into the bean when the bean is initialized. If you apply the annotation to a class, the annotation declares a resource that the bean will look up at runtime.
Attributes
javax.annotation.Resources
Description
Target: Class
Specifies an array of @Resource annotations.
Attributes
Table A-22 Attributes of the javax.annotation.Resources Annotation Name Description Data Type Required? value Specifies the array of @Resource annotations. Resource[] Yes.
Standard Security-Related JDK Annotations Used by EJB 3.0
This section provides reference information about the following annotations:
- javax.annotation.security.DeclareRoles
- javax.annotation.security.DenyAll
- javax.annotation.security.PermitAll
- javax.annotation.security.RolesAllowed
- javax.annotation.security.RunAs
javax.annotation.security.DeclareRoles
Description
Target: Class
Defines the security roles that will be used in the EJB.
You typically use this annotation to define roles that can be tested from within the methods of the annotated class, such as using the isUserInRole method. You can also use the annotation to explicitly declare roles that are implicitly declared if you use the @RolesAllowed annotation on the class or a method of the class.
You create security roles in WebLogic Server using the Administration Console. For details, see Manage Security Roles.
Attributes
javax.annotation.security.DenyAll
Description
Target: Method
Specifies that no security role is allowed to access the annotated method, or in other words, the method is excluded from execution in the EJB container.
This annotation does not have any attributes.
javax.annotation.security.PermitAll
Description
Target: Method
Specifies that all security roles currently defined for WebLogic Server are allowed to access the annotated method.
This annotation does not have any attributes.
javax.annotation.security.RolesAllowed
Description
Target: Class, Method
Specifies the list of security roles that are allowed to access methods in the EJB.
If you specify it at the class-level, then it applies to all methods in the bean class. If you specify it at the method-level, then it only applies to that method. If you specify the annotation at both the class- and method-level, the method value overrides the class value.
You create security roles in WebLogic Server using the Administration Console. For details, see Manage Security Roles.
Attributes
javax.annotation.security.RunAs
Description
Target: Class
Specifies the security role which actually executes the EJB in the EJB container.
The security role must exist in the WebLogic Server security realm and map to a user or group. For details, see Manage Security Roles.
Attributes
Table A-25 Attributes of the javax.annotation.security.RunAs Annotation Name Description Data Type Required? value Specifies the security role which the EJB should run as. String Yes.
WebLogic Kodo Annotations
This section provides reference information for the following WebLogic Kodo Annotations:
- weblogic.javaee.AllowRemoveDuringTrasaction
- weblogic.javaee.CallByReference
- weblogic.javaee.DisableWarnings
- weblogic.javaee.EJBReference
- weblogic.javaee.Idempotent
- weblogic.javaee.JMSClientID
- weblogic.javaee.JNDIName
- weblogic.javaee.MessageDestinationConfiguration
- weblogic.javaee.TransactionIsolation
- weblogic.javaee.TransactionTimeoutSeconds
The annotations descried in this section are overridden if the comparable configuration is defined in the weblogic-ejb-jar.xml deployment descriptor. For more information, see “weblogic-ejb-jar.xml Deployment Descriptor Reference” in Programming WebLogic Enterprise JavaBeans.
weblogic.javaee.AllowRemoveDuringTrasaction
Description
Target: Class (Stateful session EJBs only)
Flag that specifies whether an instance can be removed during a transaction.
This annotation is overridden by the allow-remove-during-transaction element in the weblogic-ejb-jar.xml deployment descriptor. For more information, see “weblogic-ejb-jar.xml Deployment Descriptor Reference” in Programming WebLogic Enterprise JavaBeans.
weblogic.javaee.CallByReference
Description
Target: Class (Stateful or stateless sessions EJBs only)
Flag that specifies whether parameters are copied—or passed by reference—regardless of whether the EJB is called remotely or from within the same EAR.
Method parameters are always passed by value when an EJB is called remotely.
This annotation is overridden by the enable-call-by-reference element in the weblogic-ejb-jar.xml deployment descriptor. For more information, see “weblogic-ejb-jar.xml Deployment Descriptor Reference” in Programming WebLogic Enterprise JavaBeans.
weblogic.javaee.DisableWarnings
Description
Target: Class
Specifies that WebLogic Server should disable the warning message whose ID is specified.
This annotation is overridden by the disable-warning element in the weblogic-ejb-jar.xml deployment descriptor. For more information, see “weblogic-ejb-jar.xml Deployment Descriptor Reference” in Programming WebLogic Enterprise JavaBeans.
Attributes
weblogic.javaee.EJBReference
Description
Target: Class, Method, Field
Maps EJB reference name to its JNDI name.
Attribute
weblogic.javaee.Idempotent
Description
Target: Class
Specifies an EJB that is written in such a way that repeated calls to the same method with the same arguments has exactly the same effect as a single call. This allows the failover handler to retry a failed call without knowing whether the call actually compiled on the failed server. When you enable idempotent for a method, the EJB stub can automatically recover from any failure as long as it can reach another server hosting the EJB.
This annotation is overridden by the idempotent-method and retry-methods-on-rollback elements in the weblogic-ejb-jar.xml deployment descriptor. For more information, see “weblogic-ejb-jar.xml Deployment Descriptor Reference” in Programming WebLogic Enterprise JavaBeans.
Attributes
weblogic.javaee.JMSClientID
Description
Target: Method
Specifies a client ID for the MDB when it connects to a JMS destination. Required for durable subscriptions to JMS topics.
If you specify the connection factory that the MDB uses in weblogic.javaee.MessageDestinationConfiguration, the client ID can be defined in the ClientID element of the associated JMSConnectionFactory element in config.xml.
If JMSConnectionFactory in config.xml does not specify a ClientID, or if you use the default connection factory, (you do not specify weblogic.javaee.MessageDestinationConfiguration) the MDB uses the jms-client-id value as its client id.
This annotation is overridden by the jms-client-id element in the weblogic-ejb-jar.xml deployment descriptor. For more information, see “weblogic-ejb-jar.xml Deployment Descriptor Reference” in Programming WebLogic Enterprise JavaBeans.
Attributes
weblogic.javaee.JNDIName
Description
Target: Class (Stateful or stateless session EJBs only)
Specifies the JNDI name of an actual EJB, resource, or reference available in WebLogic Server. This annotation is valid on the remote interface and the implementation class, if there is only one remote interface.
Notes: Assigning a JNDI name to a bean is not recommended. Global JNDI names generate heavy multicast traffic during clustered server startup. See “Using EJB Links” in “Implementing Enterprise Java Beans” in Programming WebLogic Enterprise JavaBeans for the better practice.
Note: If you have an EAR library that contains EJBs, you cannot deploy multiple applications that reference the library because attempting to do so will result in a JNDI name conflict. This is because global JNDI name cannot be set for individual EJBs in EAR libraries; it can only be set for an entire library.
Note: This annotation is overridden by the jndi-name element in the weblogic-ejb-jar.xml deployment descriptor. For more information, see “weblogic-ejb-jar.xml Deployment Descriptor Reference” in Programming WebLogic Enterprise JavaBeans. Attributes
Table A-30 Attributes of the weblogic.javaee.JNDIName Name Description Data Type Required? value JNDI name. String Yes.
weblogic.javaee.MessageDestinationConfiguration
Description
Target: Class (Message-driven EJBs only)
Specifies the JNDI name of the JMS Connection Factory that a message-driven EJB looks up to create its queues and topics. See “Configuring MDBs for Destinations” on page 7-18 and “How to Set connection-factory-jndi-name” on page 7-21.
This annotation is overridden by the connection-factory-jndi-name element in the weblogic-ejb-jar.xml deployment descriptor. For more information, see “weblogic-ejb-jar.xml Deployment Descriptor Reference” in Programming WebLogic Enterprise JavaBeans.
Attributes
weblogic.javaee.TransactionIsolation
Description
Target: Method
Method-level transaction isolation settings for an EJB.
This annotation is overridden by the trans-timeout-seconds element in the weblogic-ejb-jar.xml deployment descriptor. For more information, see “weblogic-ejb-jar.xml Deployment Descriptor Reference” in Programming WebLogic Enterprise JavaBeans.
Attributes
weblogic.javaee.TransactionTimeoutSeconds
Description
Target: Class
Defines the timeout for transactions in seconds.
Attributes
Table A-33 Attributes of the weblogic.javaee.TransactionTimeoutSeconds Name Description Data Type Required? value Transaction timeout value in seconds. This attribute defaults to 30 (seconds). int No