首页 > 代码库 > 【转】Hibernate入门实例

【转】Hibernate入门实例


1. 环境配置

1.1 hiberante环境配置

hibernate可实现面向对象的数据存储。hibernate的官网:http://hibernate.org/ 官网上选择hibernate ORM,可以下载最新的hibernate,还有配套的document教程 http://docs.jboss.org/hibernate/orm/4.3/manual/en-US/html_single/ 。下载到的hibernate文件夹中有document文档(hibernate\documentation\manual\en-US\html_single)。发现hibernate4.3.1的文件夹中的文档和网站上提供的答案不太一样,官网的文档更详细一些,还附有toturial的源代码。

打开eclipse->windows->preferences->java->build path->user libraries,点击new,新建一个library,可取名为hibernate。点击Add JARs,选择hibernate->lib->required中的所有jar文件,另外还需要加上数据库的connector文件。因为使用的是mysql,所以我这里用到的mysql-connector-java的jar文件。这个jar文件从哪里得到呢?安装mysql服务器产生的文件夹里面是没有jar文件的。我们需要另下载一个MySQL的JDBC jar包。可以从mysql的官网上下载:http://dev.mysql.com/downloads/connector/j/ 下载后得到一个msi文件,双击及可安装。安装后,默认会产生文件夹C:\Program Files (x86)\MySQL\MySQL Connector J ,这里就有一个mysql-connector-java-x.x.x-bin.jar包了。

1.2 mysql数据库配置

安装mysql服务器,设置root的密码为root。启动mysql服务器,新建数据库hibernate,并新建表student。

1 # mysql -uroot -proot2 > create database hiberante;3 > use hibernate;4 > create table student(id int primary key, name varchar(20), age int);5 > quit;

2. 实例代码

新建一个java工程,假设取名为HibernateHelloWorld。在src下新那一个package,可取名为com.sun.hibernate.model

2.1 类代码

新建一个简单的类,放在com.sun.hibernate.model包下。内容如下:

 1 package com.sun.hibernate.model; 2   3 public class Student { 4     private int id; 5     private String name; 6     private int age; 7   8     public int getId() { 9         return id;10     }11     public void setId(int id) {12         this.id = id;13     }14     public String getName() {15         return name;16     }17     public void setName(String name) {18         this.name = name;19     }20     public int getAge() {21         return age;22     }23     public void setAge(int age) {24         this.age = age;25     }26  27 }

2.2 配置hibernate配置文件

hibernate\projec\etc中的hiberante.cfg.xml可以作为hibernate的配置文档,或者可使用hibernate\documentation\manual\en-US\html_single\index.html作为模板。在src文件夹下新建一个文件,并命名为hibernate.cfg.xml。(不可命名为其他文件名)最基础的配置文件可参考如下:

 1 <?xml version=‘1.0‘ encoding=‘utf-8‘?> 2 <!DOCTYPE hibernate-configuration PUBLIC 3         "-//Hibernate/Hibernate Configuration DTD 3.0//EN" 4         "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"> 5       6 <hibernate-configuration> 7     <session-factory> 8       9     <!-- Database connection settings -->10     <property name="connection.driver_class">com.mysql.jdbc.Driver</property>11     <property name="connection.url">jdbc:mysql://localhost/hibernate</property>12     <property name="connection.username">root</property>13     <property name="connection.password">root</property>14          15     <!-- JDBC connection pool (use the built-in) -->16     <!-- <property name="connection.pool_size">1</property> -->17          18     <!-- SQL dialect -->19     <property name="dialect">org.hibernate.dialect.MySQLDialect</property>20          21     <!-- Echo all executed SQL to stdout -->22     <property name="show_sql">true</property>23          24     <!-- Enable Hibernate‘s automatic session context management -->25     <!--<property name="current_session_context_class">thread</property>-->26          27     <!-- Drop and re-create the database schema on startup -->28     <!-- <property name="hbm2ddl.auto">create</property> -->29          30     <!-- Disable the second-level cache -->31     <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>32      33     <mapping resource="com/sun/hibernate/model/Student.hbm.xml"/>34          35     </session-factory>36 </hibernate-configuration>

mapping resource处的值可根据包名和类名做修改。若类名为Student,则此处的类配置文件必为:Student.hbm.xml

2.3 类mapping文件

新建一个文件,命名为Student.hbm.xml,放在com.sun.hibernate.model包下。内容如下:

 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!DOCTYPE hibernate-mapping PUBLIC 3     "-//Hibernate/Hibernate Mapping DTD 3.0//EN" 4     "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> 5   6 <hibernate-mapping package="com.sun.hibernate.model"> 7     <class name="Student"> 8         <id name="id"></id> 9         <property name="name"></property>10         <property name="age"></property>11     </class>12 </hibernate-mapping>
Student.hbm.xml

注意文件开始处的配置,此处与hibernate.cfg.xml不一样。如果配置的与hiberante.cfg.xml一样,运行时会提示错误:“文档根元素 "hibernate-mapping" 必须匹配 DOCTYPE 根 "hibernate-configuration"  ”

2.4 StudentTest测试类

新增Student.java的junit测试类StudentTest.java,放在com.sun.hibernate.model包下代码如下:

 1 package com.sun.hibernate.model; 2   3 import org.hibernate.Session; 4 import org.hibernate.SessionFactory; 5 import org.hibernate.cfg.Configuration; 6   7 public class StudentTest { 8   9     public static void main(String[] args){10         Student s = new Student();11         s.setId(1);12         s.setName("s1");13         s.setAge(1);14          15         Configuration cfg = new Configuration();16         SessionFactory sf = cfg.configure().buildSessionFactory();17          18         Session session = sf.openSession();19         session.beginTransaction();20         session.save(s);21         session.getTransaction().commit();22         session.close();23         sf.close();    24     }25 }
StudentTest.class

2.5. 运行结果

运行StudentTest.java这个类,虽然提示输入成功。去数据库查询后,可发现数据已存储到student数据表中。虽然myeclipse会提示buildSessionFactory()这个函数被deprecated,但实际上程序还是可以运行成功的。

3. 使用annotation

因为使用annotation比较方便,使用annotation就可以不用写XXX.hbm.xml文件了。

3.1 新建类

敲@后应该出现提示的,如果没有出现,在Window->Preferences->Java->Editor->Content Assist,在Auto activation triggers forJava中增加@即可。Teacher.java类与Student类内容基本相同,以@开头的内容为annotation。

 1 package com.sun.hibernate.model; 2   3 import javax.persistence.Entity; 4 import javax.persistence.Id; 5   6 @Entity 7 public class Teacher { 8       9     @Id10     public int getId() {11         return id;12     }13     public void setId(int id) {14         this.id = id;15     }16     public String getName() {17         return name;18     }19     public void setName(String name) {20         this.name = name;21     }22     public int getAge() {23         return age;24     }25     public void setAge(int age) {26         this.age = age;27     }28     public int getTitle() {29         return title;30     }31     public void setTitle(String title) {32         this.title = title;33     }34      35     private int id;36     private String name;37     private int age;38     private String title;39      40 }
Teacher.class

3.2 更新hibernate.cfg.xml

在原hibernate.cfg.xml文件的mapping以下加粗内容。

1 <mapping resource="com/sun/hibernate/model/Student.hbm.xml"/>2 <mapping class="com.sun.hiberante.model.Teacher"/>

4.3 新建TeacherTest.java类

 1 import org.hibernate.SessionFactory; 2 import org.hibernate.cfg.AnnotationConfiguration; 3 import org.hibernate.cfg.Configuration; 4   5 public class TeacherTest { 6   7     public static void main(String[] args){ 8         Teacher t = new Teacher(); 9         t.setId(1);10         t.setName("t1");11         t.setAge(1);12         t.setTitle("middel");13          14         Configuration cfg = new AnnotationConfiguration();15         SessionFactory sf = cfg.configure().buildSessionFactory();16         Session session = sf.openSession();17         session.beginTransaction();18         session.save(t);19         session.getTransaction().commit();20         session.close();21         sf.close();22     }23  24 }
TeacherTest.class

3.3 运行

在数据库中新建teacher数据表:

1 # mysql -uroot -proot2 > use hibernate;3 > create table teacher(id int primary key, name varchar(20), age int, title varchar(20));4 > quit;

运行TeacherTest.java这个类,虽然提示输入成功。去数据库查询后,可发现数据已存储到teacher数据表中。