hibernate 注释
我们已经学会了 hibernate 如何使用 xml 映射文件来完成从 pojo 到数据库表的数据转换的,反之亦然。
hibernate 注释是无需使用 xml 文件来定义映射的最新方法。
你可以额外使用注释或直接代替 xml 映射元数据。
hibernate 注释是一种强大的来给对象和关系映射表提供元数据的方法。所有的元数据被添加到 pojo java 文件代码中,这有利于用户在开发时更好的理解表的结构和 pojo。
如果你想让你的应用程序移植到其它 ejb 3 的 orm 应用程序中,您必须使用注释来表示映射信息,但是如果想要得到更大的灵活性,那么你应该使用基于 xml 的映射。
hibernate 注释的环境设置
首先你必须确定你使用的是 jdk 5.0,否则你需要升级你的 jdk 至 jdk 5.0,来使你的主机能够支持注释。
其次,你需要安装 hibernate 3.x 注释包,可以从 sourceforge 行下载:(下载 hibernate 注释:https://sourceforge.net/projects/hibernate/files/hibernate-annotations/) 并且从 hibernate 注释发布中拷贝 hibernate-annotations.jar
, lib/hibernate-comons-annotations.jar
和 lib/ejb3-persistence.jar
到你的 classpath
。
注释类示例
正如我上面所提到的,所有的元数据被添加到 pojo java 文件代码中,这有利于用户在开发时更好的理解表的结构和 pojo。
下面我们将使用 employee 表来存储对象:
create table employee ( id int not null auto_increment, first_name varchar(20) default null, last_name varchar(20) default null, salary int default null, primary key (id) );
以下是用带有注释的 employee 类来映射使用定义好的 employee 表的对象:
import javax.persistence.*; @entity @table(name = "employee") public class employee { @id @generatedvalue @column(name = "id") private int id; @column(name = "first_name") private string firstname; @column(name = "last_name") private string lastname; @column(name = "salary") private int salary; public employee() {} public int getid() { return id; } public void setid( int id ) { this.id = id; } public string getfirstname() { return firstname; } public void setfirstname( string first_name ) { this.firstname = first_name; } public string getlastname() { return lastname; } public void setlastname( string last_name ) { this.lastname = last_name; } public int getsalary() { return salary; } public void setsalary( int salary ) { this.salary = salary; } }
hibernate 检测到 @id
注释字段并且认定它应该在运行时通过字段直接访问一个对象上的属性。如果你将 @id
注释放在 getid()
方法中,你可以通过默认的 getter
和 setter
方法来访问属性。因此,所有其它注释也放在字段或是 getter
方法中,决定于选择的策略。下一节将解释上面的类中使用的注释。
@entity
注释
ejb 3 标准的注释包含在 javax.persistence
包,所以我们第一步需要导入这个包。第二步我们对 employee 类使用 @entity
注释,标志着这个类为一个实体 bean,所以它必须含有一个没有参数的构造函数并且在可保护范围是可见的。
@table
注释
@table
注释允许您明确表的详细信息保证实体在数据库中持续存在。
@table
注释提供了四个属性,允许您覆盖的表的名称,目录及其模式,在表中可以对列制定独特的约束。现在我们使用的是表名为 employee。
@id
和 @generatedvalue
注释
每一个实体 bean 都有一个主键,你在类中可以用 @id
来进行注释。主键可以是一个字段或者是多个字段的组合,这取决于你的表的结构。
默认情况下,@id
注释将自动确定最合适的主键生成策略,但是你可以通过使用 @generatedvalue
注释来覆盖掉它。strategy 和 generator 这两个参数我不打算在这里讨论,所以我们只使用默认键生成策略。让 hibernate 确定使用哪些生成器类型来使代码移植于不同的数据库之间。
@column
annotation
@column
注释用于指定某一列与某一个字段或是属性映射的细节信息。您可以使用下列注释的最常用的属性:
- name 属性允许显式地指定列的名称。
- length 属性为用于映射一个值,特别为一个字符串值的列的大小。
- nullable 属性允许当生成模式时,一个列可以被标记为非空。
- unique 属性允许列中只能含有唯一的内容
创建应用类
最后,我们将创建应用程序类,并使用 main()
方法来运行应用程序。我们将使用此应用程序来保存一些员工的记录,然后我们对这些记录进行 crud
操作。
import java.util.list; import java.util.date; import java.util.iterator; import org.hibernate.hibernateexception; import org.hibernate.session; import org.hibernate.transaction; import org.hibernate.cfg.annotationconfiguration; import org.hibernate.sessionfactory; import org.hibernate.cfg.configuration; public class manageemployee { private static sessionfactory factory; public static void main(string[] args) { try{ factory = new annotationconfiguration(). configure(). //addpackage("com.xyz") //add package if used. addannotatedclass(employee.class). buildsessionfactory(); }catch (throwable ex) { system.err.println("failed to create sessionfactory object." + ex); throw new exceptionininitializererror(ex); } manageemployee me = new manageemployee(); /* add few employee records in database */ integer empid1 = me.addemployee("zara", "ali", 1000); integer empid2 = me.addemployee("daisy", "das", 5000); integer empid3 = me.addemployee("john", "paul", 10000); /* list down all the employees */ me.listemployees(); /* update employee's records */ me.updateemployee(empid1, 5000); /* delete an employee from the database */ me.deleteemployee(empid2); /* list down new list of the employees */ me.listemployees(); } /* method to create an employee in the database */ public integer addemployee(string fname, string lname, int salary){ session session = factory.opensession(); transaction tx = null; integer employeeid = null; try{ tx = session.begintransaction(); employee employee = new employee(); employee.setfirstname(fname); employee.setlastname(lname); employee.setsalary(salary); employeeid = (integer) session.save(employee); tx.commit(); }catch (hibernateexception e) { if (tx!=null) tx.rollback(); e.printstacktrace(); }finally { session.close(); } return employeeid; } /* method to read all the employees */ public void listemployees( ){ session session = factory.opensession(); transaction tx = null; try{ tx = session.begintransaction(); list employees = session.createquery("from employee").list(); for (iterator iterator = employees.iterator(); iterator.hasnext();){ employee employee = (employee) iterator.next(); system.out.print("first name: " + employee.getfirstname()); system.out.print(" last name: " + employee.getlastname()); system.out.println(" salary: " + employee.getsalary()); } tx.commit(); }catch (hibernateexception e) { if (tx!=null) tx.rollback(); e.printstacktrace(); }finally { session.close(); } } /* method to update salary for an employee */ public void updateemployee(integer employeeid, int salary ){ session session = factory.opensession(); transaction tx = null; try{ tx = session.begintransaction(); employee employee = (employee)session.get(employee.class, employeeid); employee.setsalary( salary ); session.update(employee); tx.commit(); }catch (hibernateexception e) { if (tx!=null) tx.rollback(); e.printstacktrace(); }finally { session.close(); } } /* method to delete an employee from the records */ public void deleteemployee(integer employeeid){ session session = factory.opensession(); transaction tx = null; try{ tx = session.begintransaction(); employee employee = (employee)session.get(employee.class, employeeid); session.delete(employee); tx.commit(); }catch (hibernateexception e) { if (tx!=null) tx.rollback(); e.printstacktrace(); }finally { session.close(); } } }
数据库配置
现在,让我们创建 hibernate.cfg.xml
配置文件来定义数据库相关参数
<?xml version="1.0" encoding="utf-8"?> <!doctype hibernate-configuration system "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory> <property name="hibernate.dialect"> org.hibernate.dialect.mysqldialect </property> <property name="hibernate.connection.driver_class"> com.mysql.jdbc.driver </property> <!-- assume students is the database name --> <property name="hibernate.connection.url"> jdbc:mysql://localhost/test </property> <property name="hibernate.connection.username"> root </property> <property name="hibernate.connection.password"> cohondob </property> </session-factory> </hibernate-configuration>
编译和执行
这里是编译并运行以上提到的应用程序的步骤。再继续编译和运行之前需要确保你正确设置路径和类路径。
- 从目录中删除 employee.hbm.xml 映射文件。
- 创建上述 employee.java 源文件并编译。
- 创建上述 manageemployee.java 源文件并编译。
- 执行 manageemployee 二进制程序。
你将得到如下结果,并且会在 employee 表中记录。
$java manageemployee .......various log messages will display here........ first name: zara last name: ali salary: 1000 first name: daisy last name: das salary: 5000 first name: john last name: paul salary: 10000 first name: zara last name: ali salary: 5000 first name: john last name: paul salary: 10000
如果你查看 employee 表,它将有如下记录:
mysql> select * from employee; +----+------------+-----------+--------+ | id | first_name | last_name | salary | +----+------------+-----------+--------+ | 29 | zara | ali | 5000 | | 31 | john | paul | 10000 | +----+------------+-----------+--------+ 2 rows in set (0.00 sec mysql>