EJB"

From Documentation
m
Line 87: Line 87:
 
</zscript>
 
</zscript>
 
</source>
 
</source>
 +
 +
=Example: Retrieve EntityManagerFactory=
 +
Persistence units are not bound into JNDI by default, so we have to define JBoss specific properties in <code>persistence.xml</code> to bind them into JNDI. For example,
 +
 +
<source lang="xml">
 +
</persistence-unit>
 +
    <properties>
 +
        <property name="jboss.entity.manager.factory.jndi.name" value="java:comp/entityManagerFactory"/>
 +
    </properties>
 +
</persistence-unit>
 +
</source>
 +
 +
Then, we could retrieve the entity manager factory by use of <javadoc>org.zkoss.zkplus.jndi.JndiVariableResolver</javadoc>.
  
 
=Version History=
 
=Version History=

Revision as of 11:33, 13 January 2011

Enterprise JavaBeans (EJB) technology is the server-side component architecture for Java EE. Here we described to use them in a ZUML document.

Here we use JBoss as the example. The configuration of the server might vary from one server to another, but the ZUML document is the same.

Use JndiVariableResolver to Resolve EJB in EL Expressions

Referencing an EJB in an EL expression is straightforward: specifying JndiVariableResolver in the variable-resolver directive. For example,

<?variable-resolver class="org.zkoss.zkplus.jndi.JndiVariableResolver" ?>
<window>
...
</window>

Depending your configuration, you might have to pass extra information about JNDI to it such as:

<?variable-resolver class="org.zkoss.zkplus.jndi.JndiVariableResolver"
  arg0="ZkEJB3Demo"
  arg1="mail=java:comp/env/mailing,sec=java:comp/security/module" ?>
<!--
    arg0: prepend - the prepended part of JDNDI name
    arg1: mapping - the key-value pairs for JNDI names and the corresponding variable names
-->
<window>
...
</window>

JndiVariableResolver will resolve variables in the following order:

  1. java:comp/env
  2. java:comp
  3. java:
  4. Variable could be found as a session beans with the prepend argument (arg0).
  5. The key-value pairs which is defined in the mapping argument (arg1)

Example: Retrieve Session Beans

The session beans are bound to the java:comp/env configured by jboss-web.xml and web.xml. For example, suppose we have them as follows:

jboss-web.xml:

<ejb-local-ref>
    <ejb-ref-name>personLocalBean</ejb-ref-name>
    <ejb-ref-type>Session</ejb-ref-type>
    <local>demo.PersonBeanLocal</local>
    <local-jndi-name>ZkEJB3Demo/PersonBean/local</local-jndi-name>
</ejb-local-ref>

web.xml:

<ejb-local-ref>
    <ejb-ref-name>personLocalBean</ejb-ref-name>
    <ejb-ref-type>Session</ejb-ref-type>
    <local-home>demo.PersonBeanLocal</local-home>
    <local>demo.PersonBeanLocal</local>
</ejb-local-ref>

Then, we could access them as follows.

<?variable-resolver class="org.zkoss.zkplus.jndi.JndiVariableResolver" ?>
<listbox width="600px">
    <listhead sizable="true">
        <listheader label="name" sort="auto"/>
        <listheader label="email" sort="auto"/>
    </listhead>
    <listitem forEach="${personLocalBean.allPersons}"> <!-- resolve personLocalBean from JNDI -->
        <listcell label="${each.name}"/>
        <listcell label="${each.email}"/>
    </listitem>
</listbox>

The variables provided by a variable resolver is also available to the Java code in zscript. For example,

<zscript>
personLocalBean.createDemoData();
</zscript>

Example: Retrieve EntityManagerFactory

Persistence units are not bound into JNDI by default, so we have to define JBoss specific properties in persistence.xml to bind them into JNDI. For example,

</persistence-unit>
    <properties>
        <property name="jboss.entity.manager.factory.jndi.name" value="java:comp/entityManagerFactory"/>
    </properties>
</persistence-unit>

Then, we could retrieve the entity manager factory by use of JndiVariableResolver.

Version History

Last Update : 2011/01/13


Version Date Content
     



Last Update : 2011/01/13

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.