Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

All the XML schema files are located at <geronimo_home>/schema directory. Please go through the .xsd files to have a feel of XML tags that can be used in geronimo-web.xml for configuring web applications.

EJB Application deployment plan

Geronimo uses OpenEJB container for providing ejb services. With the advent of JEE 5, the ejb container services such as transaction management, security, life cycle management can be declared in the ejb class itself using annotations. However, the ejb deployment descriptor can still be provided through ejb-jar.xml file. When both annotations and ejb-jar.xml file are provided, the ejb-jar.xml file takes precedence over the annotations.

The openejb-jar.xml file contains deployment plan for ejb modules. In the openejb-jar.xml file, the application deployer maps the security roles, ejb names, database resources, JMS resources, etc. declared in ejb-jar.xml file to corresponding entities deployed in the server. In addition to that, if there are any ejb container specific configurations to be done, the required settings are configured as well here. If the ejb module depends on any third party libraries or other services running in the server, all these third party libraries and the services are specified in the openejb-jar.xml file. Some ejb applications require class loading requirements different from the default class loading behavior. The openejb-jar.xml file allows application deployer to configure this as well. There are many more configurations that could be done through openejb-jar.xml file depending on the needs of the ejb application. The following sections briefly explain how openejb-jar.xml file can be used to configure the ejb container and ejb applications.

For example, the below XML content is the deployment descriptor (ejb-jar.xml) of a stateless session bean that connects to a back end DB2 database.

Code Block
XML
XML
borderStylesolid
titleejb-jar.xml

<?xml version="1.0" encoding="UTF-8" ?> 
<ejb-jar xmlns="http://java.sun.com/xml/ns/javaee" version="3.0" 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd">
  
  <description>Stateless Session Bean Example</description> 
  <display-name>Stateless Session Bean Example</display-name> 
  
 <enterprise-beans>
   <session>
     <ejb-name>RetrieveEmployeeInfoBean</ejb-name>
     <business-remote>examples.session.stateless_dd.RetrieveEmployeeInfo</business-remote>
     <ejb-class>examples.session.stateless_dd.RetrieveEmployeeInfoBean</ejb-class> 
     <session-type>Stateless</session-type> 
     <transaction-type>Container</transaction-type> 
 	  <resource-ref>
		<res-ref-name>jdbc/DataSource</res-ref-name>
		<res-type>javax.sql.DataSource</res-type>
		<res-auth>Container</res-auth>
		<res-sharing-scope>Shareable</res-sharing-scope>
	  </resource-ref>
   </session>
 </enterprise-beans>
 
 <interceptors>
   <interceptor>
       <interceptor-class>
	                   examples.session.stateless_dd.RetrieveEmployeeInfoCallbacks
       </interceptor-class>
       <post-construct><lifecycle-callback-method>construct</lifecycle-callback-method></post-construct>
       <post-activate><lifecycle-callback-method>activate</lifecycle-callback-method></post-activate>
       <pre-passivate><lifecycle-callback-method>passivate</lifecycle-callback-method></pre-passivate>
    </interceptor>
  </interceptors> 
 
  <assembly-descriptor>
    <interceptor-binding>
      <ejb-name>RetrieveEmployeeInfoBean</ejb-name>
      <interceptor-class>examples.session.stateless_dd.RetrieveEmployeeInfoCallbacks
      </interceptor-class>
    </interceptor-binding>  
  </assembly-descriptor>  
</ejb-jar>

Note

In EJB3.0, most of the deployment descriptor tasks can be specified through the corresponding annotations in the bean class. However, if a deployment descriptor is supplied (ejb-jar.xml), the declarations in the deployment descriptor will override the annotations.

The ejb module connects to back end datasource using it's JNDI name jdbc/DataSource as declared in the ejb-jar.xml. It also declares that the ejb is a stateless session bean and provides an interceptor class for the bean. The interceptor class will have callback methods which container calls when the corresponding events occur in the bean's life cycle.

For the above deployment descriptor, we will have to provide a corresponding deployment plan file (openejb-jar.xml) that maps the declared datasource to actual datasource deployed in the server. The following is the deployment plan.

Code Block
XML
XML
borderStylesolid
titleejb-jar.xml

<openejb-jar xmlns="http://openejb.apache.org/xml/ns/openejb-jar-2.2" 
         xmlns:naming="http://geronimo.apache.org/xml/ns/naming-1.2" 
         xmlns:sec="http://geronimo.apache.org/xml/ns/security-2.0" 
         xmlns:sys="http://geronimo.apache.org/xml/ns/deployment-1.2">

   <sys:environment>
        <sys:moduleId>
            <sys:groupId>samples</sys:groupId>
            <sys:artifactId>EmployeeDemo-ejb-dd</sys:artifactId>
            <sys:version>3.0</sys:version>
            <sys:type>jar</sys:type>
        </sys:moduleId>
    	
         <sys:dependencies>
			<sys:dependency>
                <sys:groupId>console.dbpool</sys:groupId>
                <sys:artifactId>jdbc%2FEmployeeDatasource</sys:artifactId>
                <sys:version>1.0</sys:version>
                <sys:type>rar</sys:type>
            </sys:dependency>
		</sys:dependencies>
    </sys:environment>
	
	<enterprise-beans>
		<session>
			<ejb-name>RetrieveEmployeeInfoBean</ejb-name>
			   <naming:resource-ref>
					<naming:ref-name>
					     jdbc/DataSource
                    </naming:ref-name>
					<naming:resource-link>jdbc/EmployeeDatasource</naming:resource-link>
				</naming:resource-ref>
		</session>
	</enterprise-beans>
</openejb-jar>	

Observe the various XML tags and corresponding namespaces used in the deployment plan for various purposes.

<sys:environment> .. </sys:environment> : These elements provide the moduleid configuration and the dependencies. The moduleid elements provide the configuration name for the ejb module. So, when the ejb module is deployed, it is given the configuration name samples/EmployeeDemo-ejb-dd/3.0/jar. The dependencies elements provide the configurations and third party libraries on which the ejb module is dependent on. These configurations and libraries will be available to the ejb module via a classloader hierarchy. In this case, the ejb module is dependent on console.dbpool/jdbc%2FEmployeeDatasource/1.0/jar which is the configuration of the deployed Datasource that connects to a back end DB2 database. The Datasource deploys a database connection pool (javax.sql.Datasource) with name jdbc/EmployeeDatasource.

<enterprise-beans> .. </enterprise-beans> : These elements help us to configure the enterprise beans. In this case, the datasource reference jdbc/DataSource is mapped to jdbc/EmployeeDatasource.

In the ejb bean class, the following java code is used to obtain a connection from the datasource.

Code Block
JAVA
JAVA
borderStylesolid
titleexamples.session.stateless_dd.RetrieveEmployeeInfoBean.java

....
....
Context initContext = new InitialContext();
Context envContext  = (Context)initContext.lookup("java:comp/env");
DataSource ds = (DataSource)envContext.lookup("jdbc/DataSource");
Connection con = ds.getConnection();
....
....

The above descriptor and plan are the simple illustrations that explain how ejb modules are developed and assembled for apache geronimo. Similarly, many other configurations can be performed in the openejb-jar.xml. The schema for the plan is openejb-jar-2.1.xsd