Hibernate的应用(包括关联关系的映射和HQL等)可以参考其在线文档:http://docs.jboss.org/hibernate/core/3.6/reference/zh-CN/html/
Hibernate打破了以往先建立好表在创建实体类的传统方式,hibernate可以如此操作,但也可以选择直接从实体类开始,它能够使面向对像分析、面向对象设计、面向对象编程更加一体化,我们不必关系对象层到关系层的转化问题。
使用hibernate就要先引入其核心jar包和第三方jar包,以及借以与数据库交互的JDBCjar包。
而后在hibernate.cfg.xml中配置数据库信息可以参照hibernate.properties文件,样例如下所示:
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/ssh_hibernate_test</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">618</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="hibernate.show_sql">true</property>
<!-- <propertyname="hibernate.format_sql">true</property> -->
<property name="hibernate.hbm2ddl.auto">update</property>
<mapping resource="com/myHibernate/Person.hbm.xml"></mapping>
</session-factory>
</hibernate-configuration>
第三步就是要建立实体类及其映射文件,如:Person实体类,其映射文件一般命名为Person.hbm.xml(建议将映射文件和实体类对象放到一起),而后将实体映射文件Person.hbm.xml加入到Hibernate的核心文件hibernate.cfg.xml中。映射文件如下所示:
<hibernate-mapping >
<class name="com.myHibernate.Person" table=&#