例子

让我们看一个独立应用程序利用 Hibernate 提供 Java 持久性的例子。我们将通过不同的步骤使用 Hibernate 技术创建 Java 应用程序。

创建 POJO 类

创建应用程序的第一步就是建立 Java 的 POJO 类或者其它类,这取决于即将要存放在数据库中的应用程序。我们可以考虑一下让我们的 Employee 类使用 getXXXsetXXX 方法从而使它们变成符合 JavaBeans 的类。

POJO (Plain Old Java Object) 是 Java 的一个对象,这种对象不会扩展或者执行一些特殊的类并且它的接口都是分别在 EJB 框架的要求下的。所有正常的 Java 对象都是 POJO。

当你设计一个存放在 Hibernate 中的类时,最重要的是提供支持 JavaBeans 的代码和在 Employee 类中像 id 属性一样可以当做索引的属性。

  1. public class Employee {
  2. private int id;
  3. private String firstName;
  4. private String lastName;
  5. private int salary;
  6. public Employee() {}
  7. public Employee(String fname, String lname, int salary) {
  8. this.firstName = fname;
  9. this.lastName = lname;
  10. this.salary = salary;
  11. }
  12. public int getId() {
  13. return id;
  14. }
  15. public void setId( int id ) {
  16. this.id = id;
  17. }
  18. public String getFirstName() {
  19. return firstName;
  20. }
  21. public void setFirstName( String first_name ) {
  22. this.firstName = first_name;
  23. }
  24. public String getLastName() {
  25. return lastName;
  26. }
  27. public void setLastName( String last_name ) {
  28. this.lastName = last_name;
  29. }
  30. public int getSalary() {
  31. return salary;
  32. }
  33. public void setSalary( int salary ) {
  34. this.salary = salary;
  35. }
  36. }

创建数据库表

第二步就是在你的数据库中创建表格。每一个你所愿意提供长期留存的对象都会有一个对应的表。上述的对象需要在下列的 RDBMS 表中存储和被检索到:

  1. create table EMPLOYEE (
  2. id INT NOT NULL auto_increment,
  3. first_name VARCHAR(20) default NULL,
  4. last_name VARCHAR(20) default NULL,
  5. salary INT default NULL,
  6. PRIMARY KEY (id)
  7. );

创建映射配置文件

这一步是创建一个映射文件从而指导 Hibernate 如何对数据库的表映射定义的类。

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE hibernate-mapping PUBLIC
  3. "-//Hibernate/Hibernate Mapping DTD//EN"
  4. "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
  5. <hibernate-mapping>
  6. <class name="Employee" table="EMPLOYEE">
  7. <meta attribute="class-description">
  8. This class contains the employee detail.
  9. </meta>
  10. <id name="id" type="int" column="id">
  11. <generator class="native"/>
  12. </id>
  13. <property name="firstName" column="first_name" type="string"/>
  14. <property name="lastName" column="last_name" type="string"/>
  15. <property name="salary" column="salary" type="int"/>
  16. </class>
  17. </hibernate-mapping>

你需要将映射文档以<classname>.hbm.xml的格式保存在一个文件中。我们将映射文档保存在 Employee.hbm.xml文件中。下面让我们看看映射文档相关的一些小细节:

  • 映射文档是一个 XML 格式的文档,它拥有<hibernate-mapping>作为根元素,这个元素包含了所有的 <class>元素。
  • <class> 元素被用来定义从 Java 类到数据库表的特定的映射。Java 类的名称是特定的,它使用的是类元素的 name 属性,数据库表的名称也是特定的,它使用的是 table 属性。
  • <meta> 元素是一个可选元素,它可以用来创建类的描述。
  • <id> 元素向数据库的主要关键字表映射类中的特定的 ID 属性。id 元素的 name 属性涉及到了类中的属性同时 column 属性涉及到了数据库表中的列。type 属性掌握了 hibernate 的映射类型,这种映射类型将会从 Java 转到 SQL 数据类型。
  • id 元素中的 <generator>元素是用来自动产生主要关键字的值的。将 generator 元素的 class 属性设置成 native 从而使 Hibernate 运用 identity, sequence 或者 hilo 算法依靠基础数据库的性能来创建主要关键字。
  • <property> 元素是用来映射一个 Java 类的属性到数据库的表中的列中。这个元素的 name 属性涉及到类中的属性,column 属性涉及到数据表中的列。type 属性控制 Hibernate 的映射类型,这种映射类型将会从 Java 转到 SQL 数据类型。

映射文档中还有许多其它的属性和元素,在探讨其它的 Hibernate 相关的话题时我将会详细进行讲解。

创建应用程序类

最后,我们将要使用 main() 方法创建应用程序类来运行应用程序。我们将用这个程序来保存一些 Employee 的记录,然后我们将在这些记录上应用 CRUD 操作。

  1. import java.util.List;
  2. import java.util.Date;
  3. import java.util.Iterator;
  4. import org.hibernate.HibernateException;
  5. import org.hibernate.Session;
  6. import org.hibernate.Transaction;
  7. import org.hibernate.SessionFactory;
  8. import org.hibernate.cfg.Configuration;
  9. public class ManageEmployee {
  10. private static SessionFactory factory;
  11. public static void main(String[] args) {
  12. try{
  13. factory = new Configuration().configure().buildSessionFactory();
  14. }catch (Throwable ex) {
  15. System.err.println("Failed to create sessionFactory object." + ex);
  16. throw new ExceptionInInitializerError(ex);
  17. }
  18. ManageEmployee ME = new ManageEmployee();
  19. /* Add few employee records in database */
  20. Integer empID1 = ME.addEmployee("Zara", "Ali", 1000);
  21. Integer empID2 = ME.addEmployee("Daisy", "Das", 5000);
  22. Integer empID3 = ME.addEmployee("John", "Paul", 10000);
  23. /* List down all the employees */
  24. ME.listEmployees();
  25. /* Update employee's records */
  26. ME.updateEmployee(empID1, 5000);
  27. /* Delete an employee from the database */
  28. ME.deleteEmployee(empID2);
  29. /* List down new list of the employees */
  30. ME.listEmployees();
  31. }
  32. /* Method to CREATE an employee in the database */
  33. public Integer addEmployee(String fname, String lname, int salary){
  34. Session session = factory.openSession();
  35. Transaction tx = null;
  36. Integer employeeID = null;
  37. try{
  38. tx = session.beginTransaction();
  39. Employee employee = new Employee(fname, lname, salary);
  40. employeeID = (Integer) session.save(employee);
  41. tx.commit();
  42. }catch (HibernateException e) {
  43. if (tx!=null) tx.rollback();
  44. e.printStackTrace();
  45. }finally {
  46. session.close();
  47. }
  48. return employeeID;
  49. }
  50. /* Method to READ all the employees */
  51. public void listEmployees( ){
  52. Session session = factory.openSession();
  53. Transaction tx = null;
  54. try{
  55. tx = session.beginTransaction();
  56. List employees = session.createQuery("FROM Employee").list();
  57. for (Iterator iterator =
  58. employees.iterator(); iterator.hasNext();){
  59. Employee employee = (Employee) iterator.next();
  60. System.out.print("First Name: " + employee.getFirstName());
  61. System.out.print(" Last Name: " + employee.getLastName());
  62. System.out.println(" Salary: " + employee.getSalary());
  63. }
  64. tx.commit();
  65. }catch (HibernateException e) {
  66. if (tx!=null) tx.rollback();
  67. e.printStackTrace();
  68. }finally {
  69. session.close();
  70. }
  71. }
  72. /* Method to UPDATE salary for an employee */
  73. public void updateEmployee(Integer EmployeeID, int salary ){
  74. Session session = factory.openSession();
  75. Transaction tx = null;
  76. try{
  77. tx = session.beginTransaction();
  78. Employee employee =
  79. (Employee)session.get(Employee.class, EmployeeID);
  80. employee.setSalary( salary );
  81. session.update(employee);
  82. tx.commit();
  83. }catch (HibernateException e) {
  84. if (tx!=null) tx.rollback();
  85. e.printStackTrace();
  86. }finally {
  87. session.close();
  88. }
  89. }
  90. /* Method to DELETE an employee from the records */
  91. public void deleteEmployee(Integer EmployeeID){
  92. Session session = factory.openSession();
  93. Transaction tx = null;
  94. try{
  95. tx = session.beginTransaction();
  96. Employee employee =
  97. (Employee)session.get(Employee.class, EmployeeID);
  98. session.delete(employee);
  99. tx.commit();
  100. }catch (HibernateException e) {
  101. if (tx!=null) tx.rollback();
  102. e.printStackTrace();
  103. }finally {
  104. session.close();
  105. }
  106. }
  107. }

编译和执行

下面是编译和运行上述提到的应用程序的步骤。在编译和执行应用程序之前确保你已经设置好了 PATH 和 CLASSPATH。

  • 创建设置章节中所讲的 hibernate.cfg.xml 配置文件。
  • 创建上文所述的 Employee.hbm.xml 映射文件。
  • 创建上文所述的 Employee.java 源文件并且进行编译。
  • 创建上文所述的 ManageEmployee.java 源文件并且进行编译。
  • 执行二进制的 ManageEmployee 来运行程序。

你将会得到如下结果,记录将会在 EMPLOYEE 表中建立。

  1. $java ManageEmployee
  2. .......VARIOUS LOG MESSAGES WILL DISPLAY HERE........
  3. First Name: Zara Last Name: Ali Salary: 1000
  4. First Name: Daisy Last Name: Das Salary: 5000
  5. First Name: John Last Name: Paul Salary: 10000
  6. First Name: Zara Last Name: Ali Salary: 5000
  7. First Name: John Last Name: Paul Salary: 10000

如果你检查你的 EMPLOYEE 表,它将会有如下记录:

  1. mysql> select * from EMPLOYEE;
  2. +----+------------+-----------+--------+
  3. | id | first_name | last_name | salary |
  4. +----+------------+-----------+--------+
  5. | 29 | Zara | Ali | 5000 |
  6. | 31 | John | Paul | 10000 |
  7. +----+------------+-----------+--------+
  8. 2 rows in set (0.00 sec
  9. mysql>