CDI"

From Documentation
m
Line 4: Line 4:
  
 
Here we discuss how to use CDI with ZK, especially the use of <javadoc>org.zkoss.zkplus.cdi.DelegatingVariableResolver</javadoc>. It provides the basic support of CDI: allow a ZUML document to access variables defined in CDI. For more comprehensive support, please refer to another product: [http://code.google.com/p/zkcdi/ ZK CDI].
 
Here we discuss how to use CDI with ZK, especially the use of <javadoc>org.zkoss.zkplus.cdi.DelegatingVariableResolver</javadoc>. It provides the basic support of CDI: allow a ZUML document to access variables defined in CDI. For more comprehensive support, please refer to another product: [http://code.google.com/p/zkcdi/ ZK CDI].
 +
 +
For more information, please refer to the following blogs:
 +
 +
* [http://blog.zkoss.org/index.php/2010/01/07/integrate-zk-and-jsr-299weld/ Integrate ZK and JSR-299]
 +
* [http://blog.zkoss.org/index.php/2010/02/11/handling-zk-events-using-cdi-event-notification-model/ Handling ZK Events using CDI event notification model]
  
 
=Example=
 
=Example=
Line 31: Line 36:
 
<javadoc>org.zkoss.zkplus.cdi.DelegatingVariableResolver</javadoc> resolves all variables defined by CDI (with Java annotations). In other words, it makes them visible to the ZUML document, including EL expressions, data binding and zscript.
 
<javadoc>org.zkoss.zkplus.cdi.DelegatingVariableResolver</javadoc> resolves all variables defined by CDI (with Java annotations). In other words, it makes them visible to the ZUML document, including EL expressions, data binding and zscript.
  
For more information, please refer to the following blogs:
+
=Setup Tomcat + Weld=
 +
[http://docs.jboss.org/weld/reference/1.0.0/en-US/html/ Weld] is an implementation of CDI. Here is a brief installation instructions:
 +
 
 +
* Copy <tt>weld-servlet.jar</tt> to your application's <tt>WEB-INF/lib</tt> folder. You can find the jar file in [[https://sourceforge.net/projects/jboss/files/Weld/1.0.0.SP1/weld-1.0.0.SP1.zip/download  Weld 1.0 SP1].
 +
 
 +
* Add in your application's <tt>WEB-INF/web.xml</tt> the following listener. This makes Weld bind with Tomcat.
 +
<source lang="xml">
 +
<listener>
 +
    <listener-class>org.jboss.weld.environment.servlet.Listener</listener-class>
 +
</listener>
 +
</source>
  
* [http://blog.zkoss.org/index.php/2010/01/07/integrate-zk-and-jsr-299weld/ Integrate ZK and JSR-299]
+
* In your application's <tt>META-INF</tt> folder, creates a <tt>context.xml</tt> file with following contents. This provides a JNDI reference <tt>java:comp/env/BeanManager</tt> for the accessing to the Weld bean manager. The ZK CDI variable resolver will need this.
* [http://blog.zkoss.org/index.php/2010/02/11/handling-zk-events-using-cdi-event-notification-model/ Handling ZK Events using CDI event notification model]
+
<source lang="xml">
 +
<Context>
 +
    <Resource name="BeanManager" auth="Container"
 +
        type="javax.enterprise.inject.spi.BeanManager"
 +
        factory="org.jboss.weld.resources.ManagerObjectFactory"/>
 +
</Context></source>
  
 
=Version History=
 
=Version History=

Revision as of 02:50, 29 November 2010

CDI (JSR-299) is an emerging standard for contexts and dependency injection for Java EE.

Here we discuss how to use CDI with ZK, especially the use of DelegatingVariableResolver. It provides the basic support of CDI: allow a ZUML document to access variables defined in CDI. For more comprehensive support, please refer to another product: ZK CDI.

For more information, please refer to the following blogs:

Example

Here is a Hello World example. Suppose we have a Java class called HelloWorld as shown below.

@Named
@SessionScoped
public class HelloWorld implements Serializable {
    private final String text = "Hello World";
    public String getText() {
        return text;
    }
}

Then, we could access it by specifying the variable resolver: DelegatingVariableResolver as shown below:

<?variable-resolver class="org.zkoss.zkplus.cdi.DelegatingVariableResolver"?>
<window title="ZK + CDI: Hello World" width="300px">
    My weld-injected bean says: ${helloWorld.text}
</window>

DelegatingVariableResolver resolves all variables defined by CDI (with Java annotations). In other words, it makes them visible to the ZUML document, including EL expressions, data binding and zscript.

Setup Tomcat + Weld

Weld is an implementation of CDI. Here is a brief installation instructions:

  • Copy weld-servlet.jar to your application's WEB-INF/lib folder. You can find the jar file in [Weld 1.0 SP1.
  • Add in your application's WEB-INF/web.xml the following listener. This makes Weld bind with Tomcat.
<listener>
    <listener-class>org.jboss.weld.environment.servlet.Listener</listener-class>
</listener>
  • In your application's META-INF folder, creates a context.xml file with following contents. This provides a JNDI reference java:comp/env/BeanManager for the accessing to the Weld bean manager. The ZK CDI variable resolver will need this.
<Context>
    <Resource name="BeanManager" auth="Container"
        type="javax.enterprise.inject.spi.BeanManager"
        factory="org.jboss.weld.resources.ManagerObjectFactory"/>
</Context>

Version History

Last Update : 2010/11/29


Version Date Content
     



Last Update : 2010/11/29

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