Sie sind auf Seite 1von 16

Creating an Enterprise Application with EJB 3.1 http://netbeans.org/kb/docs/javaee/javaee-entapp-ejb.html?

print=yes

Creating an Enterprise Application with EJB 3.1


This tutorial takes you through the basics of developing a Java EE 6 enterprise application and demonstrates some of the EJB 3.1
technology features that were introduced as part of the Java EE 6 specification. In this tutorial you will create an enterprise
application that enables a user to post to and retrieve messages from a database.

The application contains an EJB module and a web module. The EJB module contains an entity class, a session facade for the
entity class and a message-driven bean. The web module contains servlets for displaying and posting messages and a singleton
session bean that counts the number of users in the session.

Before starting this tutorial you may want to familiarize yourself with the following document.

Getting Started with Java EE 6 Applications

Tutorial Exercises

About the NewsApp Enterprise Application

Creating the Enterprise Application Project

Coding the EJB Module

Creating the Entity Class

Creating the Message-Driven Bean

Creating the Session Facade

Coding the Web Module

Creating the Singleton Session Bean

Creating the ListNews Servlet

Creating the PostMessage Servlet

Running the Project

Downloading the Solution Project

Troubleshooting

To follow this tutorial, you need the following software and resources.

Software or Resource Version Required


NetBeans IDE 6.8 or 6.9, Java version
Java Development Kit (JDK) version 6
GlassFish Server Open Source Edition 3.0.1

Notes.

NetBeans IDE 6.9 and the GlassFish server 3.0.1 require Java Development Kit (JDK) 6.

If you are using GlassFish v2 or an older version of NetBeans IDE, see Getting Started with Java EE Applications.

Prerequisites

This document assumes you have some basic knowledge of, or programming experience with, the following technologies:

Java Programming

NetBeans IDE

You can download a zip archive of the finished project.

1 of 16 11/6/2010 12:14 PM
Creating an Enterprise Application with EJB 3.1 http://netbeans.org/kb/docs/javaee/javaee-entapp-ejb.html?print=yes

About the NewsApp Enterprise Application


In this tutorial you will create a simple example of a multi-tiered, Java EE 6 enterprise application named NewsApp. The
NewsApp application uses some of the features introduced in the Java EE 6 specification.

The structure of the NewsApp application generally corresponds to the following tiers.

Web Tier. The Web Tier contains the presentation logic of the application and runs on a Java EE server. In the NewsApp
application, the Web Tier is represented by the web module and contains servlets that access the business logic in the EJB
module.

Business Tier. Business Tier applications also run on Java EE servers and contain the business logic of the application. In
the NewsApp application, the Business Tier is represented by the EJB module. The EJB module contains the code that
handles requests from the Web Tier clients and manages transactions and how objects are persisted to the database.

EIS Tier. The EIS Tier is the persistent storage layer of the application. In the NewsApp application, this tier is
represented by the database where the messages are stored.

When you build an enterprise application in the IDE, the EJB and web application modules are packaged in an EAR archive that
is then deployed to the server. The application is then typically accessed from the Client Tier. The Client Tier is the environment
where the client is run and is often a web browser on a user's local system.

Note. In the example in this tutorial you will use a single machine to host the Java EE server, the database and view the
web pages. In large enterprise applications, the different tiers are often distributed across multiple machines. The Web Tier
and Business Tier applications are often deployed to Java EE servers that are hosted on different machines.

For more details about the structure of Java EE enterprise applications, see the chapter on Distributed Multitiered
Applications in the Java EE 6 Tutorial, Part I.

Creating the Enterprise Application Project


The goal of this exercise is to create the NewsApp enterprise application project. You will use the New Project wizard to create an
enterprise application that contains an EJB module and a web module.

1. Choose File > New Project (Ctrl-Shift-N) from the main menu.

2. Select Enterprise Application from the Java EE category and click Next.

3. Name the project NewsApp and set the project location.

4. Deselect the Use Dedicated Folder option, if selected.


(For this tutorial there is little reason to copy project libraries to a dedicated folder because you will not need to share
libraries with other users or projects.)
Click Next.

5. Set the server to GlassFish Server 3 and set the Java EE Version to Java EE 6.

6. Select Create EJB Module and Create Web Application Module, if unselected. Click Finish.

2 of 16 11/6/2010 12:14 PM
Creating an Enterprise Application with EJB 3.1 http://netbeans.org/kb/docs/javaee/javaee-entapp-ejb.html?print=yes

When you click Finish, the IDE creates three projects: NewsApp, NewsApp-ejb and NewsApp war. If you expand the NewsApp
node in the Projects window, you can see that the enterprise application project does not contain any sources. All the sources will
be contained in the two modules that the wizard created and which are listed under the Java EE Modules node.

The enterprise application project only contains configuration details about the application in a deployment descriptor file
sun-application.xml. Deployment descriptor files are not required when you create a Java EE enterprise application that is
deployed to GlassFish Server 3.

Coding the EJB Module


In this exercise you will create an entity class, a message-driven bean and a session facade in the EJB module. You also will also
create a persistence unit to provide the container with information about the data source and how the entities are managed, and
Java Message Service (JMS) resources that are used by the message-driven bean.

3 of 16 11/6/2010 12:14 PM
Creating an Enterprise Application with EJB 3.1 http://netbeans.org/kb/docs/javaee/javaee-entapp-ejb.html?print=yes

Creating the Entity Class


In this exercise you will create the NewsEntity entity class. An entity class is a simple Java class that generally represents a
table in a database. When you create the entity class, the IDE adds the @Entity annotation to define the class as an entity
class. After you create the class, you will create fields in the class to represent the data that you want in your table.

Each entity class must have a primary key. When you create the entity class, the IDE adds the @Id annotation to declare
which field to use as the primary key. The IDE also adds the @GeneratedValue annotation and specifies the key generation
strategy for the primary Id.

To create the NewsEntity class, perform the following steps.

1. Right-click the EJB module in the Projects window and choose New > Other to open the New File wizard.

2. From the Persistence category, select Entity Class and click Next.

3. Type NewsEntity for the Class Name.

4. Type ejb for the Package.

5. Leave the Primary Key Type as Long in the New Entity Class wizard.

6. Click Create Persistence Unit to open the Create Persistence Unit dialog box.

7. Keep the default Persistence Unit Name.

8. For the Persistence Provider, choose EclipseLink (default) .

9. For the Data Source, choose a data source (for example, select jdbc/sample if you want to use JavaDB).

10. Check that the persistence unit is using the Java Transaction API and that the Table Generation Strategy is set to
Create so that the tables based on your entity classes are created when the application is deployed.

11. Click Create to close the dialog box.

12. Click Finish.

When you click Finish, the IDE creates persistence.xml and the entity class NewsEntity.java. The IDE opens
NewsEntity.java in the Source Editor.

In the Source Editor, perform the following steps.

1. Add the following field declarations to the class:

private String title;


private String body;

4 of 16 11/6/2010 12:14 PM
Creating an Enterprise Application with EJB 3.1 http://netbeans.org/kb/docs/javaee/javaee-entapp-ejb.html?print=yes

2. Right-click in the Source Editor and choose Insert Code.

3. Select Getter and Setter in the popup menu to open the Generate Getters and Setters dialog box.

4. Select the body and title fields in the dialog box. Click Generate.

When you click Generate, the IDE adds getter and setter methods for the fields.

5. Save the changes to NewsEntity.java.

You can close NewsEntity.java.

For more details about entity classes, see the chapter Introduction to the Java Persistence API in the Java EE 6 Tutorial,
Part I.

Creating the Message-Driven Bean


In this exercise you will use a wizard to create the NewMessage message-driven bean in the EJB module. The wizard will also
help you to create the necessary JMS resources. The message-driven bean receives and processes messages sent to the
queue by a servlet in the web module.

To create the message-driven bean, perform the following steps:

1. Right-click the EJB module in the Projects window and choose New > Other to open the New File wizard.

2. From the Java EE category, select Message-Driven Bean. Click Next.

3. Type NewMessage for the EJB Name.

4. Select ejb from the Package drop-down list.

5. Click the Add button next to the Project Destination field to open the Add Message Destination dialog box.

6. In the Add Message Destination dialog box, type jms/NewMessage and select Queue for the destination type. Click
OK.

7. Make sure that the project destination is correct. Click Finish.

5 of 16 11/6/2010 12:14 PM
Creating an Enterprise Application with EJB 3.1 http://netbeans.org/kb/docs/javaee/javaee-entapp-ejb.html?print=yes

When you click Finish, the bean class NewMessage.java opens in the Source Editor. You can see that the IDE added the
@MessageDriven annotation and configuration properties to the class.

@MessageDriven(mappedName = "jms/NewMessage", activationConfig = {


@ActivationConfigProperty(propertyName = "acknowledgeMode", propertyValue = "Auto-acknowledge"),
@ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue")
})
public class NewMessage implements MessageListener {

The @MessageDriven annotation tells the container that the component is a message-driven bean and specifies the JMS
resource used by the bean. When the IDE generates the class, the Mapped Name of the resource (jms/NewMessage) is
derived from the name of the class (NewMessage.java). The JMS resource is mapped to the JNDI name of the destination
from which the bean receives messages. The New Message-Driven Bean wizard also adds the information for the JMS
resources to sun-resources.xml. You do not need to configure deployment descriptors to specify the JMS resources. If you
use the Run action in the IDE to deploy the application to GlassFish, the JMS resources are created on the server on
deployment.

The EJB specifications allow you to use annotations to introduce resources directly into a class. You will now use annotations
to introduce the MessageDrivenContext resource into your class, and then inject the PersistenceContext resource which
will be used by the EntityManager API to manage the persistent entity instances. You will add the annotations to the class in
the Source Editor.

1. Inject the MessageDrivenContext resource into the class by adding the following annotated field (in bold) to the
class:

public class NewMessageBean implements MessageListener {

@Resource
private MessageDrivenContext mdc;

2. Introduce the entity manager into the class by right-clicking in the code and selecting Persistence > Use Entity
Manager from the pop-up menu.
The IDE adds the following @PersistenceContext annotation to your source code.

6 of 16 11/6/2010 12:14 PM
Creating an Enterprise Application with EJB 3.1 http://netbeans.org/kb/docs/javaee/javaee-entapp-ejb.html?print=yes

@PersistenceContext(unitName = "NewsApp-ejbPU")
private EntityManager em;

The IDE also generates the following persist method.

public void persist(Object object) {


em.persist(object);
}

3. Modify the persist method to change the name to save. The method should look like the following:

public void save(Object object) {


em.persist(object);
}

4. Modify the onMessage method by adding the following code (in bold) to the body of the method.

public void onMessage(Message message) {


ObjectMessage msg = null;
try {
if (message instanceof ObjectMessage) {
msg = (ObjectMessage) message;
NewsEntity e = (NewsEntity) msg.getObject();
save(e);
}
} catch (JMSException e) {
e.printStackTrace();
mdc.setRollbackOnly();
} catch (Throwable te) {
te.printStackTrace();
}
}

5. Press Ctrl-Shift-I to generate any necessary import statements. Save your changes.

Note. When generating the import statements, you want to make sure to import the jms and
javax.annotation.Resource libraries.

For more details about message-driven beans, see the chapter What is a Message-Driven Bean? in the Java EE 6
Tutorial, Part I.

Creating the Session Facade


In this exercise you will create a session facade for the NewsEntity entity class. The EJB 3.0 specification simplified the
creation of session beans by reducing the amount of required code and allowing the use of annotations to declare a class as a
session bean. The EJB 3.1 specification further simplifies the requirements for session beans by making business interfaces
optional. Sessions beans can be accessed by local clients either by a local interface or a no-interface view. In this tutorial you
will not create an interface for the bean. The servlets in the web application will access the bean through a no-interface view.

To create the session facade, perform the following steps:

1. Right-click the EJB module and choose New > Other.

2. From the Persistence category, select Session Beans for Entity Classes. Click Next.

3. Select ejb.NewsEntity from the list of available entity classes and click Add to move the classs to the Selected
Entity Classes pane. Click Next.

7 of 16 11/6/2010 12:14 PM
Creating an Enterprise Application with EJB 3.1 http://netbeans.org/kb/docs/javaee/javaee-entapp-ejb.html?print=yes

4. Check that the Package is set to ejb. Click Finish.

When you click Finish, the session facade NewsEntityFacade.java is created and opens in the Source Editor. The IDE adds
the @Stateless annotation that declares the class is a stateless session bean. The IDE also adds the PersistenceContext
annotation to inject the resource directly into the session bean component.

Note. Remote interfaces are still required if the beans will be accessed by remote clients.

For more information about session beans, see the chapter What is a Session Bean? in the Java EE 6 Tutorial, Part I.

Coding the Web Module


In this section you will create two servlets in the web module. The ListNews servlet retrieves messages from the database
through the entity facade in the EJB module. The PostMessage servlet is used to send JMS messages.

In this section you will also create a singleton session bean in the web module that will count the number of users that are
currently in the session. The EJB 3.1 specification enables you to create enterprise beans in web applications. Prior to EJB 3.1, all
enterprise beans had to be in EJB modules.

Creating the Singleton Session Bean


The EJB 3.1 specification introduces @Singleton annotation that enables you to easily create singleton session beans. EJB
3.1 also defines additional annotations for configuring properties of singleton session beans such as when the bean is
instantiated.

After the singleton session bean is instantiated it exists for the lifecycle of the application. As its name implies, there can only
be a single instance of a singleton session bean in the application. Like stateless session beans, singleton session beans can
have multiple clients.

To create the singleton session bean, perform the following steps.

1. Right-click the Web module and choose New > Other to open the New File wizard.

2. Select Session Bean in the Java EE category.

3. Type SessionManagerBean for the EJB Name.

4. Type ejb for the Package name.

5. Select Singleton. Click Finish.

8 of 16 11/6/2010 12:14 PM
Creating an Enterprise Application with EJB 3.1 http://netbeans.org/kb/docs/javaee/javaee-entapp-ejb.html?print=yes

When you click Finish, the IDE creates the singleton session bean class and opens the class in the editor. You can see that
the IDE added the annotation @Singleton to the class to declare a singleton session bean. The wizard also annotated the
class with @LocalBean.

@Singleton
@LocalBean
public class SessionManagerBean {

1. Annotate the class with @WebListener and implement HttpSessionListener.

@Singleton
@LocalBean
@WebListener
public class SessionManagerBean implements HttpSessionListener{

The @WebListener annotation is part of the Servlet 3.0 API and enables you to implement a listener directly in your
code.
When you implement HttpSessionListener, the IDE displays a warning in the margin.

2. Click the warning badge in the left margin and choose "Implement all abstract methods".

9 of 16 11/6/2010 12:14 PM
Creating an Enterprise Application with EJB 3.1 http://netbeans.org/kb/docs/javaee/javaee-entapp-ejb.html?print=yes

The IDE adds the sessionCreated and sessionDestroyed methods.

3. Add the static field counter and set the initial value to 0.

@LocalBean
@WebListener
public class SessionManagerBean implements HttpSessionListener{
private static int counter = 0;

4. Modify the generated bodies of the sessionCreated and sessionDestroyed methods to increase the value of a field
when a new session starts and to decrease the value when a session finishes. The value will be stored in the field
counter.

public void sessionCreated(HttpSessionEvent se) {


counter++;
}

public void sessionDestroyed(HttpSessionEvent se) {


counter--;
}

5. Add the following method that returns the current value of counter.

public int getActiveSessionsCount() {


return counter;
}

You will call this method from a servlet to display the current number of users/open sessions.

6. Save your changes.

The code for the session bean should now look like the following.

10 of 16 11/6/2010 12:14 PM
Creating an Enterprise Application with EJB 3.1 http://netbeans.org/kb/docs/javaee/javaee-entapp-ejb.html?print=yes

@Singleton
@LocalBean
@WebListener
public class SessionManagerBean implements HttpSessionListener {
private static int counter = 0;

public void sessionCreated(HttpSessionEvent se) {


counter++;
}

public void sessionDestroyed(HttpSessionEvent se) {


counter--;
}

public int getActiveSessionsCount() {


return counter;
}

For more details about singleton session beans, see the chapter What is a Session Bean? in the Java EE 6 Tutorial, Part
I.

Creating the ListNews Servlet


In this exercise you will create a simple servlet for displaying the stored messages. You will use annotations to call the
enterprise bean NewsEntityFacade from the servlet.

1. Right-click the web module project and choose New > Servlet.

2. Type ListNews for the Class Name.

3. Enter web for the Package name. Click Finish.

When you click Finish, the class ListNews.java opens in the Source Editor. In the source editor, perform the following
steps.

1. Right-click in the source editor and choose Insert Code and then select Call Enterprise Bean.

2. In the Call Enterprise Bean dialog box, expand the NewsApp-ejb node and select NewsEntityFacade. Click OK.
The IDE adds the @EJB annotation to inject the enterprise bean.

3. Use the Call Enterprise Bean dialog box again to inject the SessionManagerBean under the NewsApp-war node.
In your code you will see the following annotations that inject the two enterprise beans.

@WebServlet(name = "ListNews", urlPatterns = {"/ListNews"})


public class ListNews extends HttpServlet {

@EJB
private SessionManagerBean sessionManagerBean;
@EJB
private NewsEntityFacade newsEntityFacade;

You can also see that the @WebServlet annotation is used to declare the class a servlet and to specify the servlet
name. The @WebServlet annotation is part of the Servlet 3.0 API introduced in the Java EE 6 specification. You can
identify servlets using the annotation instead of in the web.xml deployment descriptor. The NewsApp application does

11 of 16 11/6/2010 12:14 PM
Creating an Enterprise Application with EJB 3.1 http://netbeans.org/kb/docs/javaee/javaee-entapp-ejb.html?print=yes

not contain web.xml.

4. In the processRequest method, add the following code (in bold) to return the current session or create a new one.

protected void processRequest(HttpServletRequest request, HttpServletResponse response)


throws ServletException, IOException {
request.getSession(true);
response.setContentType("text/html;charset=UTF-8");

5. Uncomment the code in the processRequest method and add the following code (in bold) to print the messages and
add a link to the PostMessage servlet:

out.println("<h1>Servlet ListNews at " + request.getContextPath () + "</h1>");

List news = newsEntityFacade.findAll();


for (Iterator it = news.iterator(); it.hasNext();) {
NewsEntity elem = (NewsEntity) it.next();
out.println(" <b>"+elem.getTitle()+" </b><br />");
out.println(elem.getBody()+"<br /> ");
}
out.println("<a href='PostMessage'>Add new message</a>");

out.println("</body>");

6. Add the following code (in bold) to retrieve and print the number of users/open sessions.

out.println("<a href='PostMessage'>Add new message</a>");

out.println("<br><br>");
out.println(sessionManagerBean.getActiveSessionsCount() + " user(s) reading the news.");

out.println("</body>");

7. Press Ctrl-Shift-I to generate any necessary import statements for the class. When generating the import statements,
you want to import the java.util libraries.

8. Save the changes to the file.

Creating the PostMessage Servlet


In this exercise you will create the PostMessage servlet that will be used to post messages. You will use annotations to
inject the JMS resources you created directly into the servlet, specifying the variable name and the name to which it is
mapped. You will then add the code to send the JMS message and the code for the HTML form for adding a message.

1. Right-click the web module project and choose New > Servlet.

2. Type PostMessage for the Class Name.

3. Enter web for the Package name and click Finish.

When you click Finish, the class PostMessage.java opens in the source editor. In the source editor, perform the following
steps.

1. Use annotations to inject the ConnectionFactory and Queue resources by adding the following field declarations (in
bold):

12 of 16 11/6/2010 12:14 PM
Creating an Enterprise Application with EJB 3.1 http://netbeans.org/kb/docs/javaee/javaee-entapp-ejb.html?print=yes

@WebServlet(name="PostMessage", urlPatterns={"/PostMessage"})
public class PostMessage extends HttpServlet {
@Resource(mappedName="jms/NewMessageFactory")
private ConnectionFactory connectionFactory;

@Resource(mappedName="jms/NewMessage")
private Queue queue;

2. You now add the code to send the JMS messages by adding the following code in bold to the processRequest
method:

response.setContentType("text/html;charset=UTF-8");

// Add the following code to send the JMS message


String title=request.getParameter("title");
String body=request.getParameter("body");
if ((title!=null) && (body!=null)) {
try {
Connection connection = connectionFactory.createConnection();
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
MessageProducer messageProducer = session.createProducer(queue);

ObjectMessage message = session.createObjectMessage();


// here we create NewsEntity, that will be sent in JMS message
NewsEntity e = new NewsEntity();
e.setTitle(title);
e.setBody(body);

message.setObject(e);
messageProducer.send(message);
messageProducer.close();
connection.close();
response.sendRedirect("ListNews");

} catch (JMSException ex) {


ex.printStackTrace();
}
}

PrintWriter out = response.getWriter();

3. Now uncomment the code to print the HTML and add the web form for adding a message. Add the following lines in
bold to the processRequest method

13 of 16 11/6/2010 12:14 PM
Creating an Enterprise Application with EJB 3.1 http://netbeans.org/kb/docs/javaee/javaee-entapp-ejb.html?print=yes

out.println("Servlet PostMessage at " + request.getContextPath() + "</h1>");

// The following code adds the form to the web page


out.println("<form>");
out.println("Title: <input type='text' name='title'><br/>");
out.println("Message: <textarea name='body'></textarea><br/>");
out.println("<input type='submit'><br/>");
out.println("</form>");

out.println("</body>");

4. Press Ctrl-Shift-I to generate any necessary import statements for the class.
Note: When selecting the which libraries to import for Connection, ConnectionFactory, Session and Queue ,
make sure you import the javax.jms libraries.

5. Save your changes to the file.

Running the Project


You can now run the project. When you run the project, you want the browser to open to the page with the ListNews servlet.
You do this by specifying the URL in the Properties dialog box for the enterprise application. The URL is relative to the context
path for the application. After you enter the relative URL, you can build, deploy and run the application from the Projects window.

To set the relative URL and run the application, do the following:

1. In the Projects window, right-click the NewsApp enterprise application node and select Properties in the pop-up menu.

2. Select Run in the Categories pane.

3. In the Relative URL textfield, type /ListNews.

4. Click OK.

5. In the Projects window, right-click the NewsApp enterprise application node and choose Run Project.

When you run the project, the ListNews servlet opens in your browser and displays a list of the messages in the database.
When you first run the project, the database is empty, but you can click Add Message to add a message.

When you add a message with the PostMessage servlet, the message is sent to the message-driven bean for writing to
persistent storage, and the ListNews servlet is called to display the messages in the database. The list of messages in the
database retrieved by ListNews often does not yet contain the new message because our message service is asynchronous.

Downloading the Solution Project

14 of 16 11/6/2010 12:14 PM
Creating an Enterprise Application with EJB 3.1 http://netbeans.org/kb/docs/javaee/javaee-entapp-ejb.html?print=yes

You can download the solution to this tutorial as a project in the following ways.

Download a zip archive of the finished project.

Checkout the project sources from the NetBeans Samples by performing the following steps:
1. Choose Team > Subversion > Checkout from the main menu.

2. In the Checkout dialog box, enter the following Repository URL:


https://svn.netbeans.org/svn/samples~samples-source-code
Click Next.

3. Click Browse to open the Browse Repostiory Folders dialog box.

4. Expand the root node and select samples/javaee/NewsAppEE6. Click OK.

5. Specify the Local Folder for the sources (the local folder must be empty).

6. Click Finish.
When you click Finish, the IDE initializes the local folder as a Subversion repository and checks out the project
sources.

7. Click Open Project in the dialog that appears when checkout is complete.

Notes.

You need a Subversion client to checkout the sources from Kenai. For more about installing Subversion, see the
section on Setting up Subversion in the Guide to Subversion in NetBeans IDE.

Troubleshooting
The following are some of the problems you may encounter when creating your project.

Problem with JMS Resources


When using the wizard to create JMS resources, you may see the following server error message in the output window:

[com.sun.enterprise.connectors.ConnectorRuntimeException:
JMS resource not created : jms/Queue]

This message could indicate that the JMS resource was not created or was not registered with the application server. You can
use the Admin Console of the application server to check, create and edit JMS resources.

To open the Admin Console, do the following:

1. Confirm that the application server is running by expanding the Servers node in the Services window of the IDE. A
small green arrow next to the application server node indicates the server is running.

2. Right-click the application server node and choose View Admin Console to open the login window in your browser.

3. Log in to the server. The default user name and password are admin and adminadmin.

4. In the Admin Console in your browser, expand the Resources node and JMS Resources node in the left frame.

5. Click on the Connection Factories and Destination Resources links in the left frame to check if the resources are
registered with the server and if necessary modify the resources. If the resources do not exist, you can create them in
the Admin Console.

You need to make sure that the JMS connection factory resource in the PostMessage servlet is mapped to the correct JNDI
name of the JMS connection factory resource registered with the Sun Java System Application Server.

The following resources should be registered with the Sun Java System Application Server:

a Destination resource with the JNDI name jms/NewMessage and type javax.jms.Queue

15 of 16 11/6/2010 12:14 PM
Creating an Enterprise Application with EJB 3.1 http://netbeans.org/kb/docs/javaee/javaee-entapp-ejb.html?print=yes

a Connection Factory resource with the JNDI name jms/NewMessageFactory and type
javax.jms.QueueConnectionFactory

Send Us Your Feedback

See Also
For more information about using NetBeans IDE to develop Java EE applications, see the following resources:

Introduction to Java EE Technology

Getting Started with Java EE 6 Applications

Introduction to Developing Web Applications

Java EE & Java Web Learning Trail

You can find more information about using EJB 3.1 Enterprise Beans in the Java EE 6 Tutorial.

To send comments and suggestions, get support, and keep informed on the latest developments on the NetBeans IDE Java EE
development features, join the nbj2ee mailing list.

16 of 16 11/6/2010 12:14 PM

Das könnte Ihnen auch gefallen