<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    網路冷眼@BlogJava

    熙熙攘攘一閑人 以冷靜的眼光觀察技術
    posts - 88, comments - 193, trackbacks - 0, articles - 28
      BlogJava :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理
    原文地址: http://testwww.netbeans.org/kb/articles/hibernate-javaee.html

    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.


    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 nbj2ee@netbeans.org mailing list.

    主站蜘蛛池模板: 亚洲精品mv在线观看| 亚洲午夜未满十八勿入网站2| 亚洲精品综合一二三区在线| 在线播放国产不卡免费视频| 免费少妇a级毛片| 黄色一级毛片免费看| 韩国二级毛片免费播放| 久久精品国产免费观看| 亚洲精品视频在线| 8x8x华人永久免费视频| 亚洲精品视频在线观看视频| 最近免费中文在线视频| 亚洲三级在线视频| 黄色毛片免费网站| 免费a级毛片视频| 一级毛片免费播放男男| 91大神免费观看| 亚洲精品国产啊女成拍色拍| 亚洲精品在线免费看| 亚洲男人天堂2018av| 国产成人免费全部网站| 有码人妻在线免费看片| 亚洲欭美日韩颜射在线二| 免费无码一区二区三区| 亚洲91精品麻豆国产系列在线 | 亚洲自偷自偷精品| 亚洲三级在线免费观看| 亚洲色欲色欱wwW在线| 国产一级理论免费版| 中文字幕在线免费播放| 亚洲综合久久成人69| 成年女人免费视频播放77777| 粉色视频成年免费人15次| 日本一道本不卡免费 | 国产精品免费观看久久| 亚洲av无码av在线播放| 亚洲高清中文字幕免费| 国产成人综合久久精品亚洲| 国产l精品国产亚洲区在线观看 | 三年片在线观看免费| 亚洲成a人片在线观看中文!!! |