站内搜索: 请输入搜索关键词

当前页面: 开发资料首页Netbeans 专题Using Hibernate with the Java Persistence API

Using Hibernate with the Java Persistence API

摘要: One of the main features of the new Java Persistence API that was introduced with the Java EE 5 platform is that you can plug in any persistence provider that you want. The Sun Java System Application Server 9 ships with Oracles's Toplink persistence provider. In this tutorial, we will install the Hibernate persistence provider on the application server and use it to develop a quick application that accesses a database with the Java Persistence API

Software Required for this Tutorial

Setting up your Environment

Before we start, we have to register the application server with the IDE and copy over the Hibernate JAR files to the application server's lib folder. We also have to create a library in the IDE for the Hibernate entity manager.

  1. If the application server is not registered in the IDE, register it by choosing Tools > Server Manager and clicking the Add Server button. You can see all registered application servers by opening the Runtime window and expanding the Servers node.
  2. Unzip the Hibernate JAR files to any temporary location and then copy the following JAR files to your application server's lib folder:
    • From Hibernate EntityManager:
      • hibernate-entitymanager.jar
      • lib/hibernate-annotations.jar
      • lib/jboss-archive-browsing.jar
      • lib/javassist.jar
    • From Hibernate Core
      • hibernate3.jar
      • lib/antlr-2.7.6.jar
      • lib/asm-attrs.jar
      • lib/asm.jar
      • lib/c3p0-0.9.0.jar
      • lib/cglib-2.1.3.jar
      • lib/commons-collections-2.1.1.jar
      • lib/commons-logging-1.0.4.jar
      • lib/concurrent-1.3.2.jar
      • lib/dom4j-1.6.1.jar
      • lib/ehcache-1.2.3.jar
      • lib/log4j-1.2.11.jar
  3. Restart the server if it is running. You can restart the server by right-clicking its node in the Runtime window and choosing Restart.
  4. Choose Tools > Library Manager from the main menu. Click New Library, name the library Hibernate, and click OK.
  5. In the Libraries pane of the Library Manager dialog box, select the Hibernate library you just created. Click the Classpath tab and then click Add JAR/Folder and locate the hibernate-entitymanager.jar and javaee.jar in your application server's lib folder. Click Add JAR / Folder and then click OK.

    library manager

Creating the Entity Classes and Persistence Unit

Now that we have added the Hibernate libraries to the lib directory of our application server, we can create the entity classes and web interface. We will create a web application named HibernateApp with entity classes and a JSF interface. We will use the NetBeans CRUD facilities.

  1. Choose File > New Project (Ctrl-Shift-N). Select Web Application from the Web category.
  2. Name the project HibernateApp, set the server to Sun Java System Application Server and the Java EE version to Java EE 5. Click Next.
  3. Select the JavaServer Faces framework and click Finish.
  4. In the Projects window, right-click the project node and choose New > Entity Classes from Database. In the Data Source drop-down, select the jdbc/sample database. If prompted for a user name and password, use app and app. Select the CUSTOMER table from the list, click Add and then click Next.

    selecting the tables from the database

  5. Leave the tables and class names as their default, and set the package to hibernatesample.db.

    wizard panel displaying the entity classes that will be generated from the selected tables

  6. Now it is time to create the persistence unit. Click the Create Persistence Unit button. Set HibernateApp as the persistence unit name, select Hibernate as the persistence provider, and select None as the table generation strategy. Click Create.

    create persistence unit dialog box

  7. Click Finish in the Entity Classes from Database wizard. The IDE creates the persistence unit (persistence.xml under Configuration Files node) and the entity classes (under Source Packages).
  8. Finally, let's add some Hibernate-specific properties. Double-click persistence.xml and click the XML button at the top of the editor to switch to the XML view. Add the following property to the persistence unit:
      <persistence-unit name="HibernateApp" transaction-type="JTA">
        <provider>org.hibernate.ejb.HibernatePersistence</provider>
        <jta-data-source>jdbc/sample</jta-data-source>
        <properties>
            <property name="hibernate.show_sql" value="true" />
        </properties>
      </persistence-unit>
    </persistence>

    This property causes all SQL statements to be printed to the application server's log file.

Coding the JSF Interface

Now we can quickly generate JSF pages for the entity classes with the NetBeans IDE CRUD generation.

  1. Right-click the project node and choose New > JSF Pages from Entity Class. Add both Customer.java and DiscountCode.java to the list of selected classes and click Next.

    New JSF Pages from Entity Class Wizard

  2. Change the package to hibernatesample.controller and click Finish.
  3. To make this application work correctly, we need to make some changes to CustomerController.java and DiscountCodeController.java. We need to modify the create, edit and destroy methods in the files to change the order in which we get the entity manager.

    Open CustomerController.java and DiscountCodeController.java in the Source Editor. Each of the files contains create, edit and destroy methods with the following code:

    EntityManager em = getEntityManager();
            try {
                utx.begin();
            

    Modify the code in each of the methods to change the order in which we get the entity manager.

    EntityManager em = null;
            try {
                utx.begin();
                em = getEntityManager();
                

    For example, the modified code in the create method of CustomerController.java should look like the following (changes in bold):

    public String create() {
            EntityManager em = null;
            try {
                utx.begin();
                em = getEntityManager();
                em.persist(customer);
                utx.commit();
                ...
                

After creating the JSF pages and modifying the code in the controller classes, you should be able to run and test the application.

Testing the Project

Now we need to run the project to test whether the connection to our database is working correctly.

  1. Right-click the project and choose Run Project. The IDE starts the application server, builds and deploys the application, and shows index.jsp in the external web browser.
  2. Click the List of Customer link and you should see the following web page:

    List of Customers JSP Page

  3. Use the New Customer link to create a customer. Then check the server log by right-clicking the application server node in the Runtime window and choosing View Server Log. The SQL statements for creating the customer should be listed in the server log.

Send Us Your Feedback

Next Steps

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

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


↑返回目录
前一篇: Using Hibernate with NetBeans4.1 and SJSAS 8.1
后一篇: Using Java Persistence in a J2EE 1.4 Web Application