Hibernate Tools for Eclipse的使用

Hibernate Tools的官方網站:http://hibernate.org/tools/
Step1安裝好Hibernate Tools,創建一個Dynamic web project,工程名爲「test」。
Step2、以Mysql爲示例,創建相應的測試數據庫及表,以下所示:html

[sql] view plain copyjava

 在CODE上查看代碼片派生到個人代碼片

  1. mysql> use test;  
  2. Database changed  
  3. mysql> show tables;  
  4. +----------------+  
  5. | Tables_in_test |  
  6. +----------------+  
  7. | customer       |  
  8. | login          |  
  9. +----------------+  
  10. 2 rows in set (0.10 sec)  

Step3、將MySql的Jdbc驅動庫(mysql-connector-java-5.0.8-bin.jar)拷貝至lib目錄。
Step4、利用Hibernate Tools生成Hibernate的cfg.xml。以下圖:

直接默認轉到下一步的配置界面,配置以下圖:

點擊完成(Finish)後,它將生成以下xml的配置文件(hibernate.cfg.xml):mysql

[html] view plain copyweb

 在CODE上查看代碼片派生到個人代碼片

  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <!DOCTYPE hibernate-configuration PUBLIC  
  3.         "-//Hibernate/Hibernate Configuration DTD 3.0//EN"  
  4.         "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">  
  5. <hibernate-configuration>  
  6.     <session-factory>  
  7.         <property name="hibernate.connection.driver_class">org.gjt.mm.mysql.Driver</property>  
  8.         <property name="hibernate.connection.password">gjs@y1</property>  
  9.         <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/test</property>  
  10.         <property name="hibernate.connection.username">root</property>  
  11.         <property name="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property>  
  12.     </session-factory>  
  13. </hibernate-configuration>  

Step5、利用Hibernate Tools生成Hibernate的Console配置。以下圖:




點擊完成(Finish)後,它將生成配置文件,以下圖:

Step6、利用Hibernat Tools生成Hibernate的reveng.xml配置。以下圖:

直接默認轉到下一步的配置界面,配置以下圖:

點擊完成(Finish)後,它將生成以下xml的配置文件(hibernate.reveng.xml):sql

[html] view plain copy數據庫

 在CODE上查看代碼片派生到個人代碼片

  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <!DOCTYPE hibernate-reverse-engineering PUBLIC   
  3.     "-//Hibernate/Hibernate Reverse Engineering DTD 3.0//EN"   
  4.     "http://hibernate.sourceforge.net/hibernate-reverse-engineering-3.0.dtd" >  
  5. <hibernate-reverse-engineering>  
  6.     <table-filter match-catalog="test" match-name="customer" />  
  7.     <table-filter match-catalog="test" match-name="login" />  
  8. </hibernate-reverse-engineering>  

Step7、最後一步了,生成映射文件Java代碼。以下圖:session

點擊運行(Run)後,它將生成以下映射文件和Java代碼文件,以下圖:


參考:http://www.cnblogs.com/abllyboy/archive/2010/12/23/1914577.htmlapp

相關文章
相關標籤/搜索