tuto_oracle4.pdf

9
Part 4: Testing the Facade Inside and Outside the Java EE Container In this section you add a new method to the entity bean using the EJB 3.0 annotation technique. You then test the new method by creating a facade client and run it inside or outside the Java EE container. To test your EJBs you need to run a client program that can create or find EJB instances and call their remote interface methods. JDeveloper provides a sample client utility that will help you create clients quickly. You can run and test EJBs using either the integrated server or a remote server; Step 1: Add a New Method to the Entity and Expose it Click the Red square Terminate button and select the HR_EJB_JPA to stop the running application. 1. Click the Red button and select the IntegratedWebLogicServer to stop WebLogicServer. 2. Collapse the ViewController node and expand the Model node. 3. Double click the Employees entity bean on the diagram to open the source code for the class and expand the @Entity node to display the hidden code. 4. Add a comma at the end of the last @NamedQuery statement, then add a query to the class that retrieves employees by name. Add the following statement: 5. So that the code looks like the following: @Entity @NamedQueries( { @NamedQuery(name = "Employees.findAll", query = "select o from Employees o"), @NamedQuery(name = "Employees.findBySal", query = "select o from Employees o where o.salary > :p_sal"), @NamedQuery(name = "Employees.findByName", query = "select o from Employees o where o.firstName like :p_name") }) @NamedQuery(name = "Employees.findByName", query = "select o from Employees o where o.firstName like :p_name") Page 1 of 9 Oracle JDeveloper 11g Release 2 Tutorials - Building a Web Application Using EJB, JPA... 08/03/2012 http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_51/jdtut_11r2_51_4.html

Transcript of tuto_oracle4.pdf

Page 1: tuto_oracle4.pdf

Part 4: Testing the Facade Inside and Outside the Java EE Container

In this section you add a new method to the entity bean using the EJB 3.0 annotation technique. You then test the new method by creating a facade client and run it inside or outside the Java EE container.

To test your EJBs you need to run a client program that can create or find EJB instances and call their remote interface methods. JDeveloper provides a sample client utility that will help you create clients quickly. You can run and test EJBs using either the integrated server or a remote server;

Step 1: Add a New Method to the Entity and Expose it

Click the Red square Terminate button and select the HR_EJB_JPA to stop the running application.1.

Click the Red button and select the IntegratedWebLogicServer to stop WebLogicServer.2.

Collapse the ViewController node and expand the Model node. 3.

Double click the Employees entity bean on the diagram to open the source code for the class and expand the @Entity node to display the hidden code.

4.

Add a comma at the end of the last @NamedQuery statement, then add a query to the class that retrieves employees by name. Add the following statement:

5.

So that the code looks like the following:

@Entity @NamedQueries( { @NamedQuery(name = "Employees.findAll", query = "select o from Employees o"), @NamedQuery(name = "Employees.findBySal", query = "select o from Employees o where o.salary > :p_sal"), @NamedQuery(name = "Employees.findByName", query = "select o from Employees o where o.firstName like :p_name") })

@NamedQuery(name = "Employees.findByName", query = "select o from Employees o where o.firstName like :p_name")

Page 1 of 9Oracle JDeveloper 11g Release 2 Tutorials - Building a Web Application Using EJB, JPA...

08/03/2012http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_51/jdtut_11r2_51_4.html

Page 2: tuto_oracle4.pdf

Click the Make icon to compile the Employees.java class.

Make sure that the Message - Log window does not report any errors.

6.

Add the new method to the session bean as follows:7.

Right-click the HRFacadeBean node in the Application Navigator and select Edit Session Facade from the context menu.

Expand the Employees node of the dialog. Notice that the new named query getEmployeesFindByName appears as an exposable method. Select it and unselect the getEmployeesFindBySal one.

8.

Click OK. Save all your work.

JDeveloper provides a way to test the EJB by creating a sample client. To do so, right click HRFacadeBean and select New Sample Java Client from the context menu.

9.

What makes these objects different from other Java files are the annotations that identify them as EJB entities. A key feature of EJB 3.0 and JPA is the ability to create entities that contain object-relational mappings by using metadata annotations rather than deployment descriptors as in earlier versions.

Page 2 of 9Oracle JDeveloper 11g Release 2 Tutorials - Building a Web Application Using EJB, JPA...

08/03/2012http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_51/jdtut_11r2_51_4.html

Page 3: tuto_oracle4.pdf

Select IntegratedWebLogicServer as the Application Server Connection.

Then click OK.

10.

Review the code of the HRFacadeClient class and correct the reported error for the getEmployeesFindByName() method by adding a value parameter "P%" so that it looks like the following: Also, remove the /*FIX ME: Pass parameters here */ comment.

Click the Save All icon to save your work.

11.

Right click the HRFacadeBean in the Application Navigator and select Run from the context menu to launch the facade bean in WebLogicServer.

12.

The client is created and opens in the code editor. If your session bean serves as a facade over JPA entities, code is generated to instantiate the query methods. If you exposed methods on your bean, the generated client contains methods that can be uncommented to call them.

Page 3 of 9Oracle JDeveloper 11g Release 2 Tutorials - Building a Web Application Using EJB, JPA...

08/03/2012http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_51/jdtut_11r2_51_4.html

Page 4: tuto_oracle4.pdf

Wait until the WebLogicServer is started.

Right click HRFacadeClient and select Run from context.

13.

The Log window returns the database data based on the three methods the client contains.

14.

To better display the results of the findByName() method, in the HRFacadeClient.java class, comment out the for loop corresponding to the getEmployeesFindAll() method, and comment out the for loop corresponding to the getDepartmentsFindAll() method. Your code should look something like this:

15.

The integrated Oracle WebLogic Server runs within JDeveloper. You can run and test EJBs quickly and easily using this server, and then deploy your EJBs with no changes to them.

Page 4 of 9Oracle JDeveloper 11g Release 2 Tutorials - Building a Web Application Using EJB, JPA...

08/03/2012http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_51/jdtut_11r2_51_4.html

Page 5: tuto_oracle4.pdf

Click the Make button to recompile the class, and ensure that no errors are returned.16.

Right click the HRFacadeClient class and select Run from context.

17.

The Log window should now display the returned rows retrieved by your ' P%' clause.

18.

Step 2: Run the Java Service outside the Java EE container

A persistence unit can be configured to run inside or outside the container. In EJB 3.0, you can run entities in a pure Java SE environment, without using an application server. One reason you might do this is to create a simple Java SE testbed (using JUnit, perhaps) to test your entity behavior without the overhead of deploying/executing in an application server. Another reason is you may want to run a Swing application locally. In this section, you create a session bean that implements a method to find employee and department records.

Create a new persistence unit to run the java service outside the Java EE container.1.

Page 5 of 9Oracle JDeveloper 11g Release 2 Tutorials - Building a Web Application Using EJB, JPA...

08/03/2012http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_51/jdtut_11r2_51_4.html

Page 6: tuto_oracle4.pdf

Right-click the META-INF > persistence.xml and select New Java Service Facade from the context menu.

In the Java Service Class panel, you can select to create a new persistence unit (in the next panel) or use an existing unit. Select Choose a Persistence Unit or Create one in the next Panel, and check the Generate a Sample Java Client checkbox.

Click Next.

2.

Name the the Persistence Unit outside. Choose JDBC Connection and make sure the JDBC connection is set to HR.

Click Next.

3.

All methods should be selected by default. Deselect some of them so that your selection looks like the following image.

4.

Page 6 of 9Oracle JDeveloper 11g Release 2 Tutorials - Building a Web Application Using EJB, JPA...

08/03/2012http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_51/jdtut_11r2_51_4.html

Page 7: tuto_oracle4.pdf

Click Next then Finish.

In the source editor window, for the JavaServiceFacadeClient class, add "P%" as a parameter to the getEmployeesFindByName method so that the statement is:

5.

(List<Employees>)javaServiceFacade.getEmployeesFindByName("P%")

Click the Make button to compile the class and save your work. 6.

Right-click the JavaServiceFacadeClient node in the Application Navigator and select Run from context.

7.

The Log window displays the result of the execution of the class running outside Java EE container, returning the lastName of the first of the retrieved records (Pat Fay).

8.

Page 7 of 9Oracle JDeveloper 11g Release 2 Tutorials - Building a Web Application Using EJB, JPA...

08/03/2012http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_51/jdtut_11r2_51_4.html

Page 8: tuto_oracle4.pdf

Double-click the META-INF > persistence.xml node to display the contents of the file.

9.

Both persistence units are described. The default inside one and the newly-created for outside Java EE run. Click the Source tab to review details.

10.

The source code shows both persistence units that have been created. The Model one and the outside one.11.

Page 8 of 9Oracle JDeveloper 11g Release 2 Tutorials - Building a Web Application Using EJB, JPA...

08/03/2012http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_51/jdtut_11r2_51_4.html

Page 9: tuto_oracle4.pdf

Summary

In this tutorial you discovered how to use EJB/JPA in a Web Application. You learned how to:

Build the data model with EJB 3.0 Using the EJB diagrammer•

Build the view project•

Add and expose a new method to the UI•

Test the facade bean inside and outside the Java EE container•

To learn more about developing Java EE applications, refer to:

"Developing with EJB and JPA Components" in User's Guide for Oracle JDeveloper•

Java EE Developer's Guide for Oracle ADF•

Programming Enterprise JavaBeans for Oracle WebLogic Server 11g•

Previous 1 2 3 4 Next

Copyright © 2011, Oracle and/or its affiliates. All rights reserved.

Page 9 of 9Oracle JDeveloper 11g Release 2 Tutorials - Building a Web Application Using EJB, JPA...

08/03/2012http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_51/jdtut_11r2_51_4.html