Building a Simple EJB Application

30
Building a Simple EJB Application –A Tutorial By Jeevaraj Gnanaselvan Dhanaraj ([email protected] ) (Jeeva has over 7 years of experience in designing and developing enterprise class web applications using JAVA and J2EE technologies. He currently works for Itreya Technologies, Bangalore, leading a team of over 10 programmers and designers, developing a multi-user, distributed, web-based workflow application) Introduction In this tutorial we will create a simple session EJB and a client web application using eclipse IDE along with Lomboz plug in and XDoclet. This application, while simple, provides a good introduction to EJB development and some of the Web development tools available. · Environment J2SDK 1.4.2 http://java.sun.com/ Eclipse 3.1 http://www.eclipse.org/ JBoss 4.0.2 http://www.jboss.org/ XDoclet 1.2.3 http://xdoclet.sourceforge.net Lomboz 3.1RC2 http://lomboz.objectweb.org/ · Installation

Transcript of Building a Simple EJB Application

Page 1: Building a Simple EJB Application

Building a Simple EJB Application –A Tutorial

By Jeevaraj Gnanaselvan Dhanaraj ([email protected])(Jeeva has over 7 years of experience in designing and developing enterprise class web applications using JAVA and J2EE technologies. He currently works for Itreya Technologies, Bangalore, leading a team of over 10 programmers and designers, developing a multi-user, distributed, web-based workflow application)

 Introduction

In this tutorial we will create a simple session EJB and a client web application using eclipse IDE along with Lomboz plug in and XDoclet. This application, while simple, provides a good introduction to EJB development and some of the Web development tools available.

·         Environment

J2SDK 1.4.2http://java.sun.com/

Eclipse 3.1

http://www.eclipse.org/

JBoss 4.0.2

http://www.jboss.org/  

XDoclet 1.2.3http://xdoclet.sourceforge.net

Lomboz 3.1RC2http://lomboz.objectweb.org/

·         Installation

Install JDK (in D:j2sdk1.4.2_04)

Install JBoss (in E:jboss-4.0.2)

Install Xdoclet (in D:xdocletxdoclet-1.2.3)

Install Eclipse (in E:Eclipse3.1)

Install Lomboz (in E:Eclipse3.1) 

Page 2: Building a Simple EJB Application

·         Setting up

1. Set up the installed JRE in eclipse (Windows -> Preferences -> Java -> Installed JREs)

 

2. Set up the installed runtime for server in eclipse (Windows -> Preferences -> Server -> Installed Runtimes)

Page 3: Building a Simple EJB Application

 

Page 4: Building a Simple EJB Application

 

 

3. Set up Xdoclet in eclipse (Windows -> Preferences -> J2EE Annotations -> XDoclet)

4. Set up the ejbdoclet for JBoss in eclipse (Windows -> Preferences -> J2EE Annotations -> Xdoclet -> ejbdoclet)

Page 5: Building a Simple EJB Application

 

·         Creating a Session Bean

1. Open the J2EE perspective in eclipse (Windows -> Open Perspective -> Other -> J2EE)

 

 

Page 6: Building a Simple EJB Application

2. Create a new EJB Project from the Project Explorer (EJB Projects -> New -> EJB Project)

3. Enter name as “SimpleEJBTutorial” and select project location as “E:Test”.

Page 7: Building a Simple EJB Application

 

Page 8: Building a Simple EJB Application

 

4. Now create a new Session Bean from the Project Explorer (EJB Projects -> Simple EJB Tutorial -> ejbmodule -> New -> Other…)

 

Page 9: Building a Simple EJB Application

 

 

 

Page 10: Building a Simple EJB Application

 

Page 11: Building a Simple EJB Application

 

Page 12: Building a Simple EJB Application

 

Page 13: Building a Simple EJB Application

 

Note:

XDoclet is an extended Javadoc Doclet engine. It's a generic Java template engine that lets us create custom Javadoc @tags and based on those @tags generate source code or other files (such as deployment descriptors in xml form). XDoclet supports a set of common standard tasks such as web.xml or ejb-jar.xml generation. It uses special JavaDoc @tags to define settings for each component. For example, putting a @ejb.bean name="Hello" jndi-name="Hello" type="Stateless" in HelloBean.java

We have to edit only the HelloBean.java. All others are automatically generated and XDoclet will regenerate them each time we make a change to the HelloBean class.

5.       Edit the HelloBean class and change the foo method to

Page 14: Building a Simple EJB Application

  public String sayHello(String param) {

return "Hello..";

}

The XDoclet builder will start working again and update our classes. At the end our projects will look like: 

 

Page 15: Building a Simple EJB Application

The highlighted classes HelloBean.java and HelloSession.java are server side classes and Hello.java and HelloHome.java are public interfaces. These are the classes that will be needed by all clients.  

·         Deploying the Session Bean 

1. Open the Servers view (Windows -> Show View -> Servers)

 

2. Create a new server by right-clicking inside the “Servers” view.

 

Page 16: Building a Simple EJB Application

 

 

Page 17: Building a Simple EJB Application

 

3. Choose SimpleEJBTutorial from the available projects.

Ensure that the option “Automatically publish when starting server” is checked.

Page 18: Building a Simple EJB Application

 

 

4. Look for console messages such as:

22:02:13,274 INFO [EjbModule] Deploying Hello

22:02:13,556 INFO [EJBDeployer] Deployed: file:/E:/jboss-4.0.2/server/default/deploy/SimpleEJBTutorial.jar

Page 19: Building a Simple EJB Application

 

 

Now the EJB has been defined and deployed. It is ready to be used. We can now build a client to make the HelloBean say Hello.

·         Creating a Web client Application

1. Create a new Dynamic Web Project namely “HelloWeb” from the Project Explorer (Dynamic Web Projects -> New -> Dynamic Web Project)

Page 20: Building a Simple EJB Application

 

We will need to access the EJB interface types such as Hello and HelloHome in client applications.

These classes are required to be added in the build path.  

2. In the Project Explorer, right click on the HelloWeb dynamic web project and Choose Properties...

Page 21: Building a Simple EJB Application

3. In the Java buildpath, add the SimpleEJBTutorial project to the project references. This will help allows us to compile against the latest ejb client classes in this web project.

 

Page 22: Building a Simple EJB Application

4. Create a new “test.jsp” under the HelloWebWebContent directory.

 

 

Page 23: Building a Simple EJB Application

 

Page 24: Building a Simple EJB Application

 

5. Open test.jsp in the JSP source page editor. 6. Add the following lines in the “body” of test.jsp

 <%

com.tutorial.Hello hello = null;

try{

com.tutorial.HelloHome home = com.tutorial.HelloUtil.getHome();

hello = home.create();

Page 25: Building a Simple EJB Application

}catch(Exception exception)

{

}

%>

<b><%= hello.sayHello(" my friend !") %></b>

 

Page 26: Building a Simple EJB Application

7. Save the test.jsp. Our web application is now complete.

·         Deploying and running the Web client Application

1. Right click on test.jsp and select Run As -> Run on Server...

 

2. Look for something like: [TomcatDeployer] deploy, ctxPath=/HelloWeb, warUrl=file:/E:/jboss-4.0.2/server/default/tmp/deploy/tmp52097HelloWeb-exp.war/ on the console.

Page 27: Building a Simple EJB Application

 

3. Same application can be invoked from browser using the url, http://localhost:8080/HelloWeb/test.jsp

 

Page 28: Building a Simple EJB Application

 

4. Experiment adding more methods and ejbs.

         Conclusion

In this tutorial we learned how to configure Eclipse to work with XDoclet and create a J2EE EJB project that has a Session Bean. We created a client Web application. This application, while simple, provides a good introduction to EJB development and some of the Web development tools available.