Programming WebLogic Enterprise JavaBeans
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
The following sections describe the EJB 2.0 deployment descriptor elements found in the weblogic-ejb-jar.xml
file, the WebLogic-specific XML document type definitions (DTD) file. Use these definitions to create the WebLogic-specific weblogic-ejb-jar.xml
file that is part of your EJB deployment.
For information on the EJB 1.1 deployment descriptor elements, see Important Information for EJB 1.1 Users.
The contents and arrangement of elements in your XML files must conform to the Document Type Definition (DTD) for each file you use. WebLogic Server ignores the DTDs embedded within the DOCTYPE header of XML deployment files, and instead uses the DTD locations that were installed along with the server. However, the DOCTYPE header information must include a valid URL syntax in order to avoid parser errors.
When editing or creating XML deployment files, it is critical to include the correct DOCTYPE header for each deployment file. In particular, using an incorrect PUBLIC
element within the DOCTYPE header can result in parser errors that may be difficult to diagnose.
The header refers to the location and version of the Document Type Definition (DTD) file for the deployment descriptor. Although this header references an external URL at java.sun.com, WebLogic Server contains its own copy of the DTD file, so your host server need not have access to the Internet. However, you must still include this <!DOCTYPE...>
element in your weblogic-ejb-jar.xml
and weblogic-cmp-jar.xml
files, and have them reference the external URL because the version of the DTD contained in this element is used to identify the version of this deployment descriptor.
XML files with incorrect header information may yield error messages similar to the following, when used with a tool that parses the XML (such as appc
):
The correct text for the PUBLIC
elements for the WebLogic-Server-specific weblogic-ejb-jar.xml
file is listed, by WebLogic Server version, in Table A-1.
Table A-1 PUBLIC Elements of weblogic-ejb-jar.xml
The correct text for the PUBLIC
elements for the WebLogic-Server-specific weblogic-cmp-jar.xml
file is listed, by WebLogic Server version, in Table A-2.
Table A-2 PUBLIC Elements of weblogic-cmp-jar.xml
See weblogic-cmp-jar.xml Deployment Descriptor Reference, for more information on the weblogic-cmp-jar.xml
file.
The correct text for the PUBLIC
elements for the Sun-Microsystems-specific ejb-jar.xml
file is listed, by Enterprise JavaBeans version, in Table A-3.
Table A-3 PUBLIC Elements of ejb-jar.xml
|
||
|
The WebLogic Server weblogic-ejb-jar.xml
deployment descriptor file describes the elements that are unique to WebLogic Server.
The top level elements in the WebLogic Server 8.1 weblogic-ejb-jar.xml
are as follows:
description
weblogic-version
weblogic-enterprise-bean
ejb-name
These changes were made to weblogic-ejb-jar.xml
in WebLogic Server 8.1:
False
in Weblogic Server 8.1.
This list of the elements in weblogic-ejb-jar.xml
includes all elements that were supported in any service pack of WebLogic Server 8.1. The previous section, Changes to weblogic-ejb-jar.xml in WebLogic Server 8.1 lists elements that were new, changed, or deprecated in Weblogic Server 8.1, or a subsequent service pack.
Specifies whether a stateful session bean instance allows concurrent method calls. By default, allows-concurrent-calls
is False
, in accordance with the EJB specification, and WebLogic Server will throw a RemoteException
when a stateful session bean instance is currently handling a method call and another (concurrent) method call arrives on the server.
When this value is set to True
, the EJB container blocks the concurrent method call and allows it to proceed when the previous call has completed.
See stateful-session-descriptor.
Specifies that the remove
method on a stateful session bean can be invoked within a transaction context.
Note: Stateful session beans implementing the Synchronization
interface should not use this tag and then call remove
before the transaction ends. If this is done the EJB container will not invoke the synchronization callbacks.
See stateful-session-descriptor.
Formerly the db-is-shared
element, specifies whether the EJB container will cache the persistent data of an entity bean across (between) transactions.
Specify True
to enable the EJB container to perform long term caching of the data. Specify False
to enable the EJB container to perform short term caching of the data.
A Read-Only bean ignores the value of the cache-between-transactions
element because WebLogic Server always performs long term caching of Read-Only data.
See Limiting Database Reads with cache-between-transactions (Long-Term Caching) for more information.
See persistence.
Specifies the order in which EJBs are removed from the cache. The values are:
The minimum cache size for NRU is 8. If max-beans-in-cache is less than 3, WebLogic Server uses a value of 8 for max-beans-in-cache
.
<stateful-session-cache>
<cache-type>NRU</cache-type>
</stateful-session-cache>
Specifies whether the EJB supports or requires client authentication.
Specifies whether the EJB supports or requires client certificate authentication at the transport level.
Determines whether WebLogic Server sends JNDI announcements for this EJB when it is deployed. When this attribute is False
(the default), a WebLogic Server cluster automatically updates its JNDI tree to indicate the location of this EJB on a particular server. This ensures that all clients can access the EJB, even if the client is not collocated on the same server.
You can set clients-on-same-server
to True
when you know that all clients that will access this EJB will do so from the same server on which the bean is deployed. In this case, a WebLogic Server cluster does not send JNDI announcements for this EJB when it is deployed. Because JNDI updates in a cluster utilize multicast traffic, setting clients-on-same-server
to True
can reduce the startup time for very large clusters.
See "Optimization for Collocated Objects in Using WebLogic Server Clusters for more information on collocated EJBs.
<weblogic-enterprise-bean>
<ejb-name>AccountBean</ejb-name>
...
<clients-on-same-server>True</clients-on-same-server>
</weblogic-enterprise-bean>
Specifies how the container should manage concurrent access to an entity bean. Set this element to one of four values:
Exclusive
causes WebLogic Server to place an exclusive lock on cached entity EJB instances when the bean is associated with a transaction. Other requests for the EJB instance are blocked until the transaction completes. This option was the default locking behavior for WebLogic Server versions 3.1 through 5.1.Database
causes WebLogic Server to defer locking requests for an entity EJB to the underlying datastore. With the Database
concurrency strategy, WebLogic Server allocates a separate entity bean instance and allows locking and caching to be handled by the database. This is the default option.ReadOnly
is used for read-only entity beans. Activates a new instance for each transaction so that requests proceed in parallel. WebLogic Server calls ejbLoad()
for ReadOnly
beans are based on the read-timeout-seconds
parameter.Optimistic
holds no locks in the EJB container or database during a transaction. The EJB container verifies that none of the data updated by a transaction has changed before committing the transaction. If any updated data changed, the EJB container rolls back the transaction.See Choosing a Concurrency Strategy for more information on the Exclusive
and Database
locking behaviors. See Read-Write versus Read-Only Entity Beans for more information about read-only
entity EJBs.
<weblogic-enterprise-bean>
<ejb-name>AccountBean</ejb-name>
<entity-descriptor>
<entity-cache>
<concurrency-strategy>ReadOnly</concurrency-strategy>
</entity-cache>
</entity-descriptor>
</weblogic-enterprise-bean>
Specifies the transport confidentiality requirements for the EJB. Using the confidentiality
element ensures that the data is sent between the client and server in such a way as to prevent other entities from observing the contents.
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 and How to Set connection-factory-jndi-name.
<message-driven-descriptor>
<connection-factory-jndi-name>
java:comp/env/jms/MyConnectionFactory
</connection-factory-jndi-name>
</message-driven-descriptor>
Introduced in WebLogic Server 8.1 SP01, specifies the principal to be used in situations where ejbCreate
would otherwise run with an anonymous principal. Under such conditions, the choice of which principal to run as is governed by the following rule:
if create-as-principal-name
is set
then use that principal
else
If a run-as
role has been specified for the bean in ejb-jar.xml
then use a principal according to the rules for setting the run-as-role-assignmen
t
else
run ejbCreate
as an anonymous principal.
The create-as-principal-name
element only needs to be specified if operations within ejbCreate
require more permissions than the anonymous principal would have.
This element effects the ejbCreate
methods of stateless session beans and message-driven beans.
See also remove-as-principal-name, passivate-as-principal-name, and principal-name.
Set the delay-updates-until-end-of-tx
element to True
(the default) to update the persistent store of all beans in a transaction at the completion of the transaction. This setting generally improves performance by avoiding unnecessary updates. However, it does not preserve the ordering of database updates within a database transaction.
If your datastore uses an isolation level of TransactionReadCommittedUncommitted
, you may want to allow other database users to view the intermediate results of in-progress transactions. In this case, set delay-updates-to-end-of-tx
to False
to update the bean's persistent store at the conclusion of each method invoke. See Understanding ejbLoad() and ejbStore() Behavior for more information.
Note: Setting delay-updates-until-end-of-tx
to False
does not cause database updates to be "committed" to the database after each method invoke; they are only sent to the database. Updates are committed or rolled back in the database only at the conclusion of the transaction.
<entity-descriptor>
<persistence>
...
...
<delay-updates-until-end-of-tx>False</delay-updates-until-end-of-tx>
</persistence>
</entity-descriptor>
<dscription>Contains a description of parent element</description>
Specifies the JNDI name used to associate a message-driven bean with an actual JMS Queue or Topic deployed in the WebLogic Server JNDI tree.
See message-driven-descriptor.
Specifies that WebLogic Server should disable the warning message whose ID is specified. Set this element to one of four values:
BEA-010001
—Disables this warning message: "EJB class loaded from system classpath during deployment."BEA-010054
—Disables this warning message: "EJB class loaded from system classpath during compilation."BEA-010200
—Disables this warning message: "EJB impl class contains a public static field, method or class."BEA-010202
—Disables this warning message: "Call-by-reference not enabled."To disable the warning message: "Call-by-reference not enabled", set <disable-warning>, as shown below.
<disable-warning>BEA-010202</disable-warning>
Designates which server execute thread pool the EJB should run in. Dispatch polices are supported for all types of beans, including entity, session and message-driven.
If no dispatch-policy
is specified, or the specified dispatch-policy
refers to a nonexistent server execute thread pool, then the server's default execute thread pool is used instead.
WebLogic Server ignores dispatch-policy
if the host server instance does not have an execute thread queue bearing a corresponding name.
If a message-driven bean (MDB) is driven by a foreign (non-WebLogic) destination source, WebLogic Server might ignore dispatch-policy
, as the MDB may instead run in the foreign provider's threading mechanism. For example, for the IBM WebSphere MQSeries messaging software, dispatch-policy
is not honored for non-transactional queues; instead the application code runs in an MQSeries thread. For MQSeries transactional queues, and both non-transactional and transactional topics, dispatch-policy
is honored.
The maximum number of concurrently running MDB instances is designated by a combination of max-beans-in-free-pool and dispatch-policy
values.
maxConcurrentMDBs = Min(max-beans-free-pool, default-thread-pool-size/2+1)
.
MDBs that run in the default thread pool limit their concurrency to half the thread pool size plus one to prevent deadlocks with other services and applications that share the default thread pool.
<dispatch-policy>queue_name</dispatch-policy>
Maps the JNDI name of an EJB in the WebLogic Server instance that is referenced by the bean in the ejb-local-ref
element.
<ejb-local-reference-description>
<ejb-ref-name>AdminBean</ejb-ref-name>
<jndi-name>payroll.AdminBean</jndi-name>
</ejb-local-reference-description>
Specifies an enterprise bean's name, using the same name for the bean that is specified in ejb-jar.xml.
The enterprise bean code does not depend on the name; therefore the name can be changed during the application assembly process without breaking the enterprise bean's function. There is no architected relationship between the ejb-nam
e in the deployment descriptor and the JNDI name that the Deployer will assign to the enterprise bean's home.
Note: Not recommended in weblogic-enterprise-bean.
For more information, see Using EJB Links.
See method.
Maps the JNDI name of an EJB in WebLogic Server to the name by which it is specified in the ejb-ref-name
element in ejb-jar.xml
.
<ejb-reference-description>
<ejb-ref-name>AdminBean</ejb-ref-name>
<jndi-name>payroll.AdminBean</jndi-name>
</ejb-reference-description>
Specifies a resource reference name. This element is the reference that the EJB provider places within the ejb-jar.xml
deployment file.
<reference-descriptor>
<ejb-reference-description>
<ejb-ref-name>AdminBean</ejb-ref-name>
<jndi-name>payroll.AdminBean</jndi-name>
</ejb-reference-description>
</reference-descriptor>
By default, the EJB implementation class is loaded in the same classloader as the rest of the EJB classes. When the enable-bean-class-redeploy
element is enabled, the implementation class, along with its super classes, gets loaded in a child classloader of the EJB module classloader. This allows the EJB implementation class to be redeployed without redeploying the entire EJB module.
There are some potential problems with loading the bean class in a child classloader. First, the bean class will no longer be visible to any classes loaded in the parent classloader, so those classes cannot refer to the bean class or errors will occur. Also, the bean class will not be able to invoke any package protected methods on any classes loaded in a different classloader. So, if your bean class invokes a helper class in the same package, the helper class methods must be declared public or IllegalAccessErrors
will result.
Note: Two-phase deployment must be used for this feature to be enabled. WebLogic Server ignores the enable-bean-class-redeploy
setting will be ignored if two-phase deployment is not used. For information on two-phase deployment, see Two-Phase Deployment Protocol in Deploying WebLogic Server Applications.
The following XML stanza enables redeployment of an individual bean class:
<enable-bean-class-redeploy>True</enable-bean-class-redeploy>
When enable-call-by-reference
is False,
parameters to the EJB methods are copied—or passed by value—regardless of whether the EJB is called remotely or from with the same EAR.
Note: Even when set to false, call-by-reference
is used when it is used:
When enable-call-by-reference
is True
, EJB methods called from within the same EAR file or standalone JAR file will pass arguments by reference. This improves the performance of method invocation since parameters are not copied.
Note: Method parameters are always passed by value when an EJB is called remotely.
<weblogic-enterprise-bean>
<entity-descriptor>
<ejb-name>AccountBean</ejb-name>
...
<enable-call-by-reference>False</enable-call-by-reference>
</entity-descriptor>
</weblogic-enterprise-bean>
Set to True
to enable dynamic queries. Dynamic queries are only available for use with EJB 2.0 CMP beans.
<enable-dynamic-queries>True</enable-dynamic-queries>
Defines the following options used to cache entity EJB instances within WebLogic Server:
See Understanding Entity Caching for more information.
<entity-descriptor>
<entity-cache>
<max-beans-in-cache>...</max-beans-in-cache>
<idle-timeout-seconds>...</idle-timeout-seconds>
<read-timeout-seconds>...<read-timeout-seconds>
<concurrency-strategy>...</concurrency-strategy>
</entity-cache>
<persistence>...</persistence>
<entity-clustering>...</entity-clustering>
</entity-descriptor>
Refers to an application level entity cache that the entity bean uses. An application level cache is a cache that may be shared by multiple entity beans in the same application. The value you specify for entity-cache-name
must match the name assigned to an application level entity cache in the weblogic-application.xml
file
For more information about the weblogic-application.xml
file, see Enterprise Application Deployment Descriptor Elements in Developing WebLogic Server Applications.
See entity-cache-ref.
Refers to an application level entity cache which can cache instances of multiple entity beans that are part of the same application. Application level entity caches are declared in the weblogic-application.xml
file.
Use concurrency-strategy to define the type of concurrency you want the bean to use. The concurrency-strategy
must be compatible with the application level cache's caching strategy. For example, an Exclusive
cache only supports beans with a concurrency-strategy
of Exclusive
. A MultiVersion
cache supports the Database
, ReadOnly
, and Optimistic
concurrency strategies.
<entity-cache-ref>
<entity-cache-name>AllEntityCache</entity-cache-name>
<read-timeout-seconds>600</read-timeout-seconds>
<cache-between-transactions>true</cache-between-transactions>
<concurrency-strategy>ReadOnly</concurrency-strategy>
<estimated-bean-size>20</estimated-bean-size>
</entity-cache-ref>
Specifies how an entity bean will be replicated in a WebLogic cluster:
The following excerpt shows the structure of a entity-clustering
stanza:
<entity-clustering>
<home-is-clusterable>True</home-is-clusterable>
<home-load-algorithm>random</home-load-algorithm>
<home-call-router-class-name>beanRouter</home-call-router-
class-name>
<use-servside-stubs>True</use-servside-stubs>
</entity-clustering>
Specifies the following deployment parameters that are applicable to an entity bean:
pool
entity-cache
or entity-cache-ref
persistence
entity-clustering
invalidation-target
enable-dynamic-queries
<entity-descriptor>
<entity-cache>...</entity-cache>
<persistence>...</persistence>
<entity-clustering>...</entity-clustering>
<invalidation-target>...</invalidation-target>
<enable-dynamic-queries>...</enable-dynamic-queries>
</entity-descriptor>
Specifies the estimated average size of the instances of an entity bean in bytes. This is the average number of byte of memory that is consumed by each instance.
Use the estimated-bean-size
element when the application level cache you use to cache beans is also specified in terms of bytes and megabytes.
Although you may not know the exact number of bytes consumed by the entity bean instances, specifying a size allows you to give some relative weight to the beans that share a cache at one time.
For example, suppose bean A and bean B share a cache, called AB-cache, that has a size of 1000 bytes and the size of A is 10 bytes and the size of B is 20 bytes, then the cache can hold at most 100 instances of A and 50 instances of B. If 100 instance s of A are cached, this implies that 0 instances of B are cached.
See entity-cache-ref.
Indicates that a particular security role is defined externally in a security realm, outside of the deployment descriptor. Because the security role and its principal-name mapping is defined elsewhere, principal-names are not to be specified in the deployment descriptor. This tag is used as an indicative placeholder instead of a set of principal-name
elements.
Valid only for CMP entity EJBs. The finders-load-bean
element determines whether WebLogic Server loads the EJB into the cache after a call to a finder method returns a reference to the bean. If you set this element to True
, WebLogic Server immediately loads the bean into the cache if a reference to a bean is returned by the finder. If you set this element to False
, WebLogic Server does not automatically load the bean into the cache until the first method invocation; this behavior is consistent with the EJB 1.1 specification.
<entity-descriptor>
<persistence>
<finders-load-bean>True</finders-load-bean>
</persistence>
</entity-descriptor>
The global-role
element is deprecated and will be removed in a future version of WebLogic. Use the externally-defined element instead.
The global-role
element indicates that a particular security role is defined "globally" in a security realm. Because the security role and its principal-name mapping is defined elsewhere, principal-names are not to be specified in the deployment descriptor. This tag is used as an indicative placeholder instead of a set of principal-name
elements.
Specifies the name of a custom class to use for routing bean method calls. This class must implement weblogic.rmi.cluster.CallRouter()
. If specified, an instance of this class is called before each method call. The router class has the opportunity to choose a server to route to based on the method parameters. The class returns either a server name or null, which indicates that the current load algorithm should select the server.
See entity-clustering and stateful-session-clustering.
When home-is-clusterable
is True
, the EJB can be deployed from multiple WebLogic Servers in a cluster. Calls to the home stub are load-balanced between the servers on which this bean is deployed, and if a server hosting the bean is unreachable, the call automatically fails over to another server hosting the bean.
See entity-clustering.
Specifies the algorithm to use for load balancing between replicas of the EJB home in a cluster. If this element is not defined, WebLogic Server uses the algorithm specified by the server element, weblogic.cluster.defaultLoadAlgorithm
.
You can define home-load-algorithm
as one of the following values:
round-robin
—Load balancing is performed in a sequential fashion among the servers hosting the bean.random
—Replicas of the EJB home are deployed randomly among the servers hosting the bean.weight-based
—Replicas of the EJB home are deployed on host servers according to the servers' current workload.round-robin-affinity
—server affinity governs connections between external Java clients and server instances; round robin load balancing is used for connections between server instances.weight-based-affinity
—server affinity governs connections between external Java clients and server instances; weight-based load balancing is used for connections between server instances.random-affinity
—server affinity governs connections between external Java clients and server instances; random load balancing is used for connections between server instances.For more information, see Load Balancing for EJBs and RMI Objects in Using WebLogic Server Clusters.
See entity-clustering and stateful-session-clustering.
Defines list of methods of a clustered EJB which are 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-methods for a method, the EJB stub can automatically recover from any failure as long as it can reach another server hosting the EJB.
Clustering must be enabled for the EJB. To enable clustering, see entity-clustering, stateful-session-clustering, and stateless-clustering.
The methods on stateless session bean homes and read-only entity beans are automatically set to be idempotent. It is not necessary to explicitly specify them as idempotent.
<idempotent-method>
<method>
<description>...</description>
<ejb-name>...</ejb-name>
<method-intf>...</method-intf>
<method-name>...</method-name>
<method-params>...</method-params>
</method>
</idempotent-method>
Specifies whether the EJB supports or requires identity assertion.
Defines the maximum length of time a stateful session EJB should remain in the cache. After this time has elapsed, WebLogic Server removes the bean instance if the number of beans in cache approaches the limit of max-beans-in-cache
. The removed bean instances are passivated. See Caching and Passivating Stateful Session EJBs for more information.
idle-timeout-seconds
appears in the entity-cache
stanza, WebLogic Server 8.1 SP1 and SP2 do not use its value in managing the lifecycle of entity EJBs—in those service packs, idle-timeout-seconds
has no effect on when entity beans are removed from cache.<entity-cache>
tag in the weblogic-ejb-jar.xml
deployment descriptor, the existing <idle-timeout-seconds>
element is enabled only for those entity beans whose <concurrency-strategy>
is set to one of: Database
, ReadOnly
Optimistic
, or Exclusive
. The following entry indicates that the stateful session EJB, AccountBean
, should become eligible for removal if max-beans-in-cache
is reached and the bean has been in cache for 20 minutes:
<weblogic-enterprise-bean>
<ejb-name>AccountBean</ejb-name>
<stateful-session-descriptor>
<stateful-session-cache>
<max-beans-in-cache>200</max-beans-in-cache>
<idle-timeout-seconds>1200</idle-timeout-seconds>
</stateful-session-cache>
</stateful-session-descriptor>
</weblogic-enterprise-bean>
Specifies security configuration parameters at the bean level. These parameters determine the IIOP security information contained in the IOR.
<iiop-security-descriptor>
<transport-requirements>...</transport-requirements>
<client-authentication>supported<client-authentication>
<identity-assertion>supported</identity-assertion>
</iiop-security-descriptor>
If you specify a value for initial-beans-in-free-pool
, you set the initial size of the pool. WebLogic Server populates the free pool with the specified number of bean instances for every bean class at startup. Populating the free pool in this way improves initial response time for the EJB, because initial requests for the bean can be satisfied without generating a new instance.
See pool.
Specifies the initial context factory used by the JMS provider to create initial context. See Configuring MDBs for Destinations and How to Set initial-context-factory.
<message-driven-descriptor>
<initial-context-factory>fiorano.jms.rtl.FioranoInitialContextFactory
</initial-context-factory>
</message-driven-descriptor>
Specifies the transport integrity requirements for the EJB. Using the integrity
element ensures that the data is sent between the client and server in such a way that it cannot be changed in transit.
Specifies a Read-Only entity EJB that should be invalidated when this container-managed persistence entity EJB has been modified.
The target ejb-name
must be a Read-Only entity EJB and this element can only be specified for an EJB 2.0 container-managed persistence entity EJB.
<invalidation-target>
<ejb-name>StockReaderEJB</ejb-name>
</invalidation-target>
Specifies a method that WebLogic Server calls when the EJB is stored. The specified method must return a boolean
value. If no method is specified, WebLogic Server always assumes that the EJB has been modified and always saves it.
Providing a method and setting it as appropriate can improve performance for EJB 1.1-compliant beans, and for beans that use bean-managed persistence. However, any errors in the method's return value can cause data inconsistency problems.
Note: isModified()
is no longer required for 2.0 CMP entity EJBs based on the EJB 2.0 specification. However, it still applies to BMP and 1.1 CMP EJBs. When you deploy EJB 2.0 entity beans with container-managed persistence, WebLogic Server automatically detects which EJB fields have been modified, and writes only those fields to the underlying datastore.
<entity-descriptor>
<persistence>
<is-modified-method-name>semidivine</is-modified-method-name>
</persistence>
</entity-descriptor>
Defines method-level transaction isolation settings for an EJB. Allowable values include:
TRANSACTION_SERIALIZABLE
—Simultaneously executing this transaction multiple times has the same effect as executing the transaction multiple times in a serial fashion.TRANSACTION_READ_COMMITTED
—The transaction can view only committed updates from other transactionsTRANSACTION_READ_UNCOMMITTED
—The transaction can view uncommitted updates from other transactions.TRANSACTION_REPEATABLE_READ
—Once the transaction reads a subset of data, repeated reads of the same data return the same values, even if other transactions have subsequently modified the data.These addition values are supported only for Oracle databases, and only for container-managed persistence (CMP) EJBs:
TRANSACTION_READ_COMMITTED_FOR_UPDATE
— Supported only for Oracle databases, for container-managed persistence (CMP) EJBs only. This value sets the isolation level to TRANSACTION_READ_COMMITTED
, and for the duration of the transaction, all SQL SELECT
statements executed in any method are executed with FOR UPDATE
appended to them. This causes the secluded rows to be locked for update. If Oracle cannot lock the rows affected by the query immediately, then it waits until the rows are free. This condition remains in effect until the transaction does a COMMIT
or ROLLBACK
java.sql.SQLException: ORA-08177: can't serialize access for this transaction
which can occur when using the TRANSACTION_SERIALIZABLE
isolation level with Oracle databases.
TRANSACTION_READ_COMMITTED_FOR_UPDATE_NO_WAIT
—Supported only for Oracle databases, for container-managed persistence (CMP) EJBs only. This value sets the isolation level to TRANSACTION_READ_COMMITTED
, and for the duration of the transaction, all SQL SELECT
statements executed in any method are executed with FOR UPDATE NO WAIT appended to them. This causes the selected rows to be locked for update.
In contrast to the TRANSACTION_READ_COMMITTED_FOR_UPDATE
setting, TRANSACTION_READ_COMMITTED_FOR_UPDATE_NO_WAIT
causes the Oracle DBMS to NOT WAIT
if the required locks cannot be acquired immediately—the affected SELECT
query will fail and an exception will be thrown by the Container.
Refer to your database documentation for more information support for different isolation levels.
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 connection-factory-jndi-name, the client ID can be defined in the ClientID
element of the associated JMSConnectionFactory
stanza 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 connection-factory-jndi-name) the message-driven bean uses the jms-client-id
value as its client id.
<jms-client-id>MyClientID</jms-client-id>
Specifies the number of seconds between each attempt to reconnect to the JMS destination. Each message-driven bean listens on an associated JMS destination. If the JMS destination is located on another WebLogic Server instance or a foreign JMS provider, then the JMS destination may become unreachable. In this case, the EJB container automatically attempts to reconnect to the JMS Server. Once the JMS Server is up again, the message-driven bean can again receive messages.
<jms-polling-interval-seconds>5</jms-polling-interval-seconds>
Specifies the JNDI name of an actual EJB, resource, or reference available in WebLogic Server.
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 for the better practice.
See resource-description and ejb-reference-description.
JNDI name for a bean's local home. If a bean has both a remote and a local home, then it may be assigned two JNDI names; one for each home.
<local-jndi-name>w
eblogic.jndi.WLInitialContext
</local-jndi-name>
Specifies the maximum number of objects of this class that are allowed in memory. When max-bean-in-cache
is reached, WebLogic Server passivates some EJBs that have not recently been used by a client. max-beans-in-cache
also affects when EJBs are removed from the WebLogic Server cache, as described in Caching and Passivating Stateful Session EJBs.
Note: Evaluate the amount of memory available with the amount you require as, assigning a very high value to the max-beans-in-cache parameter may result in an OutOfMemoryError. The amount of memory cache required can be calculated as the number of beans in the cache times the size of the EJB.
<weblogic-enterprise-bean>
<ejb-name>AccountBean</ejb-name>
<entity-descriptor>
<entity-cache>
<max-beans-in-cache>200</max-beans-in-cache>
</entity-cache>
</entity-descriptor>
</weblogic-enterprise-bean>
WebLogic Server maintains a free pool of EJBs for every entity bean, stateless session bean and message-driven bean class. The max-beans-in-free-pool
element defines the size of this pool.
See pool.
Associates a message-driven bean with a JMS destination in WebLogic Server.
The following example shows the structure of the message-driven-descriptor
stanza:
<message-driven-descriptor>
<pool>...</pool>
<destination-jndi-name>...</destination-jndi-name>
<initial-context-factory>...</initial-context-factory>
<provider-url>...</provider-url>
<connection-factory-jndi-name>...<connection-factory-jndi-name>
<jms-polling-interval-seconds>...</jms-polling-interval-seconds>
<jms-client-id>...</jms-client-id>
</message-driven-descriptor>
Defines a method or set of methods for an enterprise bean's home or remote interface.
<method>
<description>...</description>
<ejb-name>...</ejb-name>
<method-intf>...</method-intf>
<method-name>...</method-name>
<method-params>...</method-params>
</method>
Specifies the EJB interface to which WebLogic Server applies isolation level properties, if the method has the same signature in multiple interfaces.
See method.
Specifies the name of an individual EJB method to which WebLogic Server applies isolation level properties. Use the asterisk (*) to specify all methods in the EJB's home and remote interfaces.
If you specify a method-name
, the method must be available in the specified ejb-name
.
See method.
Specifies the fully qualified Java type name of a method parameter.
See method-params.
Contains one or more elements that define the Java type name of each of the method's parameters.
The method-params
stanza contains one or more method-param
elements, as shown here:
<method-params>
<method-param>java.lang.String</method-param>
...
</method-params>
The passivate-as-principal-name
element, introduced in WebLogic Server 8.1 SP01, specifies the principal to be used in situations where ejbPassivate
would otherwise run with an anonymous principal. Under such conditions, the choice of which principal to run as is governed by the following rule:
If passivate-as-principal-name
is set
then use that principal
else
if a run-as
role has been specified for the bean in ejb-jar.xml
then use a principal according to the rules for setting the run-as-role-assignmen
t
else
run ejbPassivate
as an anonymous principal.
The passivate-as-principal-name
element only needs to be specified if operations within ejbPassivate
require more permissions than the anonymous principal would have.
This element affects the ejbPassivate
methods of stateless session beans when passivation occurs due to a cache timeout.
See also remove-as-principal-name, create-as-principal-name, and principal-name.
Required only for entity EJBs that use container-managed persistence services. The persistence
element defines the following options that determine the persistence type, transaction commit behavior, and ejbLoad()
and ejbStore()
behavior for entity EJBs in WebLogic Server:
<entity-descriptor>
<persistence>
<is-modified-method-name>...</is-modified-method-name>
<delay-updates-until-end-of-tx>...</delay-updates-until-end-of-tx>
<finders-load-beand>...</finders-load-bean>
<persistence-use>...</persistence-use>
</persistence>
</entity-descriptor>
Required only for entity EJBs that use container-managed persistence services. The persistence-use
element stores an identifier of the persistence type to be used for this particular bean.
<persistence-use>
<type-identifier>WebLogic_CMP_RDBMS</type-identifier>
<type-version>5.1.0</type-version>
<type-storage>META-INF/weblogic-cmp-jar.xml</type-storage>
</persistence-use>
Specifies a file system directory where WebLogic Server stores the state of passivated stateful session bean instances. For more information, see Specifying the Persistent Store Directory for Passivated Beans.
<stateful-session-descriptor>
<stateful-session-cache>...</stateful-session-cache>
<allow-concurrent-calls>...</allow-concurrent-calls>
<persistent-store-dir>MyPersistenceDir</persistent-store-dir>
<stateful-session-clustering>...</stateful-session-clustering>
<allow-remove-during-transaction>
</stateful-session-descriptor>
Configures the behavior of the WebLogic Server free pool for entity EJBs, stateless session EJBs, and message-driven EJBs. The options are:
<stateless-session-descriptor>
<pool>
<max-beans-in-free-pool>500</max-beans-in-free-pool>
<initial-beans-in-free-pool>250</initial-beans-in-free-pool>
</pool>
</stateless-session-descriptor>
Specifies the name of an actual WebLogic Server principal to apply to the specified role-name
. At least one principal-name
is required in the security-role-assignment stanza. You may define more than one principal-name
for each role-name.
Specifies the URL to be used by the InitialContext
. See Configuring MDBs for Destinations and How to Set provider-url.
<message-driven-descriptor>
<provider-url>WeblogicURL:Port</provider-url>
</message-driven-descriptor>
Specifies the number of seconds between ejbLoad()
calls on a Read-Only
entity bean. A value of 0 causes WebLogic Server to call ejbLoad()
only when the bean is brought into the cache.
The following entry causes WebLogic Server to call ejbLoad()
for instances of the AccountBean
class only when the instance is first brought into the cache:
<weblogic-enterprise-bean>
<ejb-name>AccountBean</ejb-name>
<entity-descriptor>
<entity-cache>
<read-timeout-seconds>0</read-timeout-seconds>
</entity-cache>
</entity-descriptor>
</weblogic-enterprise-bean>
Maps references in the ejb-jar.xml
file to the JNDI names of actual resource factories and EJBs available in WebLogic Server.
The reference-descriptor
stanza contains one or more additional stanzas to define resource factory references and EJB references. The following shows the organization of these elements:
<reference-descriptor>
<resource-description>
...
</resource-description>
<resource-env-description>
...
</resource-env-description>
<ejb-reference-description>
...
</ejb-reference-description>
<ejb-local-reference-description>
...
</ejb-local-reference-description>
</reference-descriptor>
Specifies the length of time that a remote RMI client will wait before it will timeout. See Using the RMI Timeout in Programming WebLogic RMI.
The following entry causes a remote RMI client to timeout after waiting 5 seconds.
<weblogic-enterprise-bean>
<ejb-name>AccountBean</ejb-name>
...
<remote-client-timeout>5</remote-client-timeout>
</weblogic-enterprise-bean>
This parameter only needs to be specified if operations within ejbRemove
need more permissions than the anonymous principal would have.
The remove-as-principal-name
element, introduced in WebLogic Server 8.1 SP1, specifies the principal to be used in situations where ejbRemove
would otherwise run with an anonymous principal. Under such conditions, the choice of which principal to run as is governed by the following rule:
If remove-as-principal-name
is set
then use that principal
else
if a run-as
role has been specified for the bean in ejb-jar.xml
then use a principal according to the rules for setting the run-as-role-assignmen
t
else
run ejbRemove
as an anonymous principal
The remove-as-principal-name
element only needs to be specified if operations within ejbRemove
require more permissions than the anonymous principal would have.
This element effects the ejbRemove
methods of stateless session beans and message-drive beans.
See also passivate-as-principal-name, create-as-principal-name, and principal-name.
Determines whether WebLogic Server replicates the state of stateful session EJBs across WebLogic Server instances in a cluster. If you select InMemory
, the state of the EJB is replicated. If you select None
, the state is not replicated.
See stateful-session-clustering.
Specifies the name of a resource environment reference.
See resource-description.
Specifies the name of a resourcefactory
reference. This is the reference that the EJB provider places within the ejb-jar.xml
deployment file. Required element if the EJB specifies resource references in ejb-jar.xml
See resource-description.
Maps a resource reference defined in ejb-jar.xml
to the JNDI name of an actual resource available in WebLogic Server.
<reference-descriptor>
<resource-description>
<res-ref-name>. . .</res-ref-name>
<jndi-name>...</jndi-name>
</resource-description>
<ejb-reference-description>
<ejb-ref-name>. . .</ejb-ref-name>
<jndi-name>. . .</jndi-name>
</ejb-reference-description>
</reference-descriptor>
Maps a resource environment reference defined in ejb-jar.xml
to the JNDI name of an actual resource available in WebLogic Server.
<reference-descriptor>
<resource-env-description>
<res-env-ref-name>. . .</res-env-ref-name>
<jndi-name>...</jndi-name>
<reference-env-description>
</reference-descriptor>
When jndi-name
is not a valid URL, WebLogic Server treats it as a object that maps to a URL and is already bound in the JNDI tree, and binds a LinkRef
with that jndi-name
.
Identifies an application role name that the EJB provider placed in the ejb-jar.xml
deployment file. Subsequent principal-name elements in the stanza map WebLogic Server principals to the specified role-name
.
Note: The run-as-identity-principal
element is deprecated in this release of WebLogic Server. Use run-as-principal-name instead.
The run-as-identity-principal
element specifies which security principal name is to be used as the run-as principal for a bean that has specified a security identity run-as-role-name
its ejb-jar.xml
deployment descriptor.
For an explanation of how the mapping of run-as role-names to run-as-identity-principals or run-as-principal-names occurs, see the comments for the run-as-role-assignment element.
<run-as-identity-principal>
Fred
</run-as-identity-principal>
Specifies which security principal name is to be used as the run-as principal for a bean that has specified a security-identity
run-as role-name
in its ejb-jar.xml
deployment descriptor.
For an explanation of how the mapping of run-as role-names
to run-as-principal-names
occurs, see the comments for the run-as-role-assignment element.
<run-as-principal-name>
Fred
</run-as-principal-name>
Maps a given security-identity run-as role-name
specified in the ejb-jar.xml
deployment descriptor file to a run-as-principal-name
.
The value of the run-as-principal-name
for a given role-name that is specified here is scoped to all beans in the ejb-jar.xml
deployment descriptor; it applies to all beans that specify that role-name as their security-identity run-as-role-name
.
The run-as-principal-name
value specified here can be overridden at the individual bean level by specifying a run-as-principal-name under that bean's weblogic-enterprise-bean
element.
Note: For a given bean, if there is no run-as-principal-name
specified in either a run-as-role-assignment
or in a bean specific run-as-principal-name
tag, then the EJB container chooses the first principal-name
of a security user in the weblogic-enterprise-bean
security-role-assignment
for the role-name
and uses that principal-name
as the run-as-principal-name
.
Suppose that in the ejb-jar.xml
deployment descriptor file:
Consider the following excerpts from the corresponding weblogic-ejb-jar.xml
deployment descriptor file:
<weblogic-ejb-jar>
<weblogic-enterprise-bean>
<ejb-name>
A_EJB_with_runAs_role_x
</ejb-name>
</weblogic-enterprise-bean>
<weblogic-enterprise-bean>
<ejb-name>
B_EJB_with_runAs_role_X
</ejb-name>
<run-as-principal-name>
Joe
</run-as-principal-name>
</weblogic-enterprise-bean>
<weblogic-enterprise-bean>
<ejb-name>
C_EJB_with_runAs_role_Y
</ejb-name>
</weblogic-enterprise-bean>
<security-role-assignment>
<role-name>
runAs_role_Y
</role-name>
<principal-name>
first_principal_of_role_Y
</principal-name>
<principal-name>
second_principal_of_role_Y
</principal-name>
</security-role-assignment>
<run-as-role-assignment>
<role-name>
runAs_role_X
</role-name>
<run-as-principal-name>
Fred
</run-as-principal-name>
</run-as-role-assignment>
</weblogic-ejb-jar>
Each of the beans chooses a different principal name to use as its run-as-principal-name
:
This bean's run-as role-name is 'runAs_role_X'. The jar scoped <run-as-role-assignment>
mapping will be used to look up the name of the principal to use.
The <run-as-role-assignment>
mapping specifies that for <role-name>
'runAs_role_X' we are to use <run-as-principal-name>
'Fred'.
"Fred" is the principal name that will be used.
This bean's run-as role-name is also 'runAs_role_X'. This bean will not use the jar scoped <run-as-role-assignment>
to look up the name of the principal to use because that value is overridden by this bean's <weblogic-enterprise-bean> <run-as-principal-name>
value 'Joe'.
"Joe" is the principal name that will be used.
This bean's run-as role-name is 'runAs_role_Y'. There is no explicit mapping of 'runAs_role_Y' to a run-as principal name; that is, there is no jar-scoped <run-as-role-assignment>
for 'runAs_role_Y' nor is there a bean scoped <run-as-principal-name>
specified in this bean's weblogic-enterprise-bean
.
To determine the principal name to use, the <security-role-assignment>
for <role-name>
"runAs_role_Y" is examined. The first <principal-name>
corresponding to a User (i.e. not a Group) is chosen.
"first_principal_of_role_Y" is the principal name that will be used.
Specifies a security permission that is associated with a J2EE Sandbox.
For more information, see Sun's implementation of the security permission specification:
http://java.sun.com/j2se/1.3/docs/guide/security/PolicyFiles.html#FileSyntax
<security-permission>
<description>Optional explanation goes here</description>
<security-permission-spec>
...
</security-permission-spec>
</security-permission>
Specifies a single security permission based on the Security policy file syntax.
For more information, see Sun's implementation of the security permission specification:
http://java.sun.com/j2se/1.3/docs/guide/security/PolicyFiles.html#FileSyntax
To grant the "read" permission to "java.vm.version," and prevent it from being overwritten:
Maps application roles in the ejb-jar.xml
file to the names of security principals available in WebLogic Server.
<security-role-assignment>
<role-name>PayrollAdmin</role-name>
<principal-name>Tanya</principal-name>
<principal-name>system</principal-name>
<externally-defined>True</externally-defined>
...
</security-role-assignment>
Determines how long the EJB container leaves a passivated stateful session bean on disk. The container removes a passivated EJB session-timeout-seconds
after passivating the bean instance to disk. If session-timeout-seconds
is not specified, the default is the value specified by idle-timeout-seconds
.
<stateful-session-descriptor>
<stateful-session-cache>
<max-beans-in-cache>4</max-beans-in-cache> <idle-timeout-seconds>5</idle-timeout-seconds> <session-timeout-seconds>120</session-timeout-seconds>
<cache-type>LRU</cache-type>
</stateful-session-cache>
</stateful-session-descriptor>
Defines the following options used to cache stateful session EJB instances.
See Caching and Passivating Stateful Session EJBs for more information about caching of stateful session beans.
The following example shows how to specify the stateful-session-cache
element
<stateful-session-cache>
<max-beans-in-cache>...</max-beans-in-cache>
<idle-timeout-seconds>...</idle-timeout-seconds>
<session-timeout-seconds>...</session-timeout-seconds>
<cache-type>...</cache-type>
</stateful-session-cache>
Specifies the following options that determine how WebLogic Server replicates stateful session EJB instances in a cluster:
<stateful-session-clustering>
<home-is-clusterable>True</home-is-clusterable>
<home-load-algorithm>random</home-load-algorithm>
<home-call-router-class-name>beanRouter</home-call-router-class-name>
<replication-type>InMemory</replication-type>
</stateful-session-clustering>
Defines deployment behaviors, such as caching, clustering, and persistence, for stateless session EJBs in WebLogic Server.
<stateful-session-descriptor>
<stateful-session-cache>...</stateful-session-cache>
<allow-concurrent-calls>...</allow-concurrent-calls>
<allow-remove-during-transaction>...
</allow-remove-during-transaction>
<persistent-store-dir>/myPersistenceStore</persistent-store-dir>
<stateful-session-clustering>...</stateful-session-clustering>
</stateful-session-descriptor>
Specifies the name of a custom class to use for routing bean method calls. This class must implement weblogic.rmi.cluster.CallRouter()
. If specified, an instance of this class is called before each method call. The router class has the opportunity to choose a server to route to based on the method parameters. The class returns either a server name or null, which indicates that the current load algorithm should select the server.
See stateless-clustering.
When stateless-bean-is-clusterable
is True
, the EJB can be deployed from multiple WebLogic Servers in a cluster. Calls to the home stub are load-balanced between the servers on which this bean is deployed, and if a server hosting the bean is unreachable, the call automatically fails over to another server hosting the bean.
See stateless-clustering.
Specifies the algorithm to use for load balancing between replicas of the EJB home.
You can define stateless-bean-load-algorithm
as one of the following values:
round-robin
—Load balancing is performed in a sequential fashion among the servers hosting the bean.random
—Replicas of the EJB home are deployed randomly among the servers hosting the bean.weight-based
—Replicas of the EJB home are deployed on host servers according to the servers' current workload.round-robin-affinity
—Server affinity governs connections between external Java clients and server instances; round robin load balancing is used for connections between server instances.weight-based-affinity
—Server affinity governs connections between external Java clients and server instances; weight-based load balancing is used for connections between server instances.random-affinity
—Server affinity governs connections between external Java clients and server instances; random load balancing is used for connections between server instances.For more information, see Load Balancing for EJBs and RMI Objects in Using WebLogic Server Clusters.
See stateless-clustering.
Note: This element is deprecated in this release.
Set stateless-bean-methods-are-idempotent
to True
only if the bean is written such 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 completed on the failed server. Setting this property to True
makes it possible for the bean stub to recover automatically from any failure as long as another server hosting the bean can be reached.
See stateless-clustering.
Specifies options that determine how WebLogic Server replicates stateless session EJB instances in a cluster.
The following excerpt shows the structure of a stateless-clustering
stanza:
<stateless-clustering>
<stateless-bean-is-clusterable>
True
</stateless-bean-is-clusterable>
<stateless-bean-load-algorithm>
random</stateless-bean-load-algorithm>
<stateless-bean-call-router-class-name>
beanRouter
</stateless-bean-call-router-class-name>
<stateless-bean-methods-are-idempotent>
True
</stateless-bean-methods-are-idempotent>
</stateless-clustering>
Defines deployment parameters, such as caching, clustering, and persistence for stateless session EJBs in WebLogic Server.
<stateless-session-descriptor>
<pool>...</pool>
<stateless-clustering>...</stateless-clustering>
</stateless-session-descriptor>
Specifies options that define transaction behavior in WebLogic Server. Currently, this stanza includes only one element: trans-timeout-seconds
.
<transaction-descriptor>
<trans-timeout-seconds>20</trans-timeout-seconds>
</transaction-descriptor>
Defines method-level transaction isolation settings for an EJB.
<transaction-isolation>
<isolation-level>...</isolation-level>
<method>
<description>...</description>
<ejb-name>...</ejb-name>
<method-intf>...</method-intf>
<method-name>...</method-name>
<method-params>...</method-params>
</method>
</transaction-isolation>
For more information, see isolation-level.
Provides the transport requirements for the EJB.
<iiop-security-descriptor>
<transport-requirements>
<confidentiality>supported</confidentiality>
<integrity>supported</integrity>
<client-cert-authorization>suppoted
</client-cert-authentication>
</transport-requirements>
</iiop-security-descriptor>
Specifies the maximum duration for an EJB's container-initiated transactions. If a transaction lasts longer than trans-timeout-seconds
, WebLogic Server rolls back the transaction.
Required only for entity EJBs that use container-managed persistence services. Specifies an entity EJB persistence type. WebLogic Server RDBMS-based persistence uses the identifier, WebLogic_CMP_RDBMS
. If you use a different persistence vendor, consult the vendor's documentation for information on the correct type-identifier
.
See persistence-use for an example that shows the complete persistence type definition for WebLogic Server RDBMS-based persistence.
Required only for entity EJBs that use container-managed persistence services. Defines the full path of the file that stores data for this persistence type. The path must specify the file's location relative to the top level of the EJB's JAR deployment file or deployment directory.
WebLogic Server RDBMS-based persistence generally uses an XML file named weblogic-cmp-jar.xml
to store persistence data for a bean. This file is stored in the META-INF
subdirectory of the JAR file.
See persistence-use for an example that shows the complete persistence type definition for WebLogic Server RDBMS-based persistence.
Required for entity EJBs that use container-managed persistence service, if multiple versions of the same persistence type are installed. Identifies the version of the specified persistence type. For example, for WebLogic 2.0 CMP persistence, use the value:
For WebLogic 1.1 CMP persistence, use the value:
This element is necessary if multiple versions of the same persistence type are installed.
If you use WebLogic Server RDBMS-based persistence, the specified version must exactly match the RDBMS persistence version for the WebLogic Server release. Specifying an incorrect version results in the error:
weblogic.ejb.persistence.PersistenceSetupException: Error initializing the CMP Persistence Type for your bean: No installed Persistence Type matches the signature of (identifier `Weblogic_CMP_RDBMS', version `version_number').
See persistence-use for an example that shows the complete persistence type definition for WebLogic Server RDBMS-based persistence.
Causes the bean home to use server-side stubs in the context of server.
See the example for entity-clustering.
weblogic-ejb-jar
is the root element of the weblogic component of the EJB deployment descriptor.
Contains the deployment information for a bean that is available in WebLogic Server.
![]() ![]() |
![]() |
![]() |