Hibernate 初体验
这篇文章讲讲 hibernate 的一些基本概念及相关配置。
Java EE 开发三层结构
- Web层:包括Servlet/jsp、Struts1/2、SpringMVC等
- Service层:包括Spring、JavaBean等
- Dao层:JDBC、Hibernate、Mybatis、DBUtils等
什么是Hibernate
Hibernate 是一个开放源代码的ORM(Object Relational Mapping
,对象关系映射)框架,它对JDBC进行了轻量级的对象封装,使得Java开发人员可以使用面向对象的编程思想来操作数据库。
Hibernate的优势
使用传统的JDBC开发应用系统时,如果是小型应用系统,并不觉得麻烦,但是对于大型应用系统的开发,使用JDBC就会显得力不从心。例如对几十、几百张包含几十个字段的表进行插入操作时,编写的SQL语句不但很长,而且繁琐,容易出错;在读取数据时,需要写多条getXxx()
语句从结果集中取出各个字段的信息,不但枯燥重复,并且工作量非常大。
ORM利用对象与数据库表之间的映射,自动把Java应用程序中的对象,持久化到关系数据库的表中。通过操作Java对象,就可以完成对数据库表的操作。
与其他操作数据库的技术相比,Hibernate有以下几点优势:
- Hibernate 对JDBC访问数据库的代码做了轻量级封装,大大简化了数据访问层(Dao)繁琐的重复性代码,并且减少了内存消耗,加快了运行效率。
- Hibernate 的性能非常好,映射的灵活性非常出色。它支持很多关系型数据库,从一对一到多对多的各种复杂关系。
- 可扩展性强,由于源代码的开源以及API的开放,当本身功能不够用时,可以自行编码进行扩展。
体验Hibernate
1. 引入.jar包
- 数据库驱动包:mysql-connector-java-5.1.7-bin.jar
- Hibernate相关包:Hibernate/lib/required/*.jar(下载Hibernate,文件夹required下的所有.jar包)
- 日志记录的包:log4j-1.2.16.jar / slf4j-api-1.6.1.jar / slf4j-log4j12-1.7.2.jar
2. 创建数据库和表
在Mysql中创建名为 hibernate 的数据库,在此数据库中创建cst_customer
表。
create database hibernate; use hibernate; CREATE TABLE `cst_customer` ( `cust_id` bigint(32) NOT NULL AUTO_INCREMENT COMMENT '客户编号(主键)', `cust_name` varchar(32) NOT NULL COMMENT '客户名称(公司名称)', `cust_source` varchar(32) DEFAULT NULL COMMENT '客户信息来源', `cust_industry` varchar(32) DEFAULT NULL COMMENT '客户所属行业', `cust_level` varchar(32) DEFAULT NULL COMMENT '客户级别', `cust_linkman` varchar(64) DEFAULT NULL COMMENT '联系人', `cust_phone` varchar(64) DEFAULT NULL COMMENT '固定电话', `cust_mobile` varchar(16) DEFAULT NULL COMMENT '移动电话', PRIMARY KEY (`cust_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
3. 创建实体(持久化类)
在项目src
目录下,创建com.bingo.domain
包,并在包中创建实体类Customer
(对应数据库表cst_customer
),Customer
类包含与cst_customer
数据表字段对应的属性,以及相应的getXxx()
和setXxx()
方法。
package com.bingo.domain; public class Customer { private Long cust_id; private String cust_name; private String cust_source; private String cust_industry; private String cust_level; private String cust_linkman; private String cust_phone; private String cust_mobile; public Customer() { super(); } public Customer(Long cust_id, String cust_name, String cust_source, String cust_industry, String cust_level, String cust_linkman, String cust_phone, String cust_mobile) { super(); this.cust_id = cust_id; this.cust_name = cust_name; this.cust_source = cust_source; this.cust_industry = cust_industry; this.cust_level = cust_level; this.cust_linkman = cust_linkman; this.cust_phone = cust_phone; this.cust_mobile = cust_mobile; } public Long getCust_id() { return cust_id; } public void setCust_id(Long cust_id) { this.cust_id = cust_id; } public String getCust_name() { return cust_name; } public void setCust_name(String cust_name) { this.cust_name = cust_name; } public String getCust_source() { return cust_source; } public void setCust_source(String cust_source) { this.cust_source = cust_source; } public String getCust_industry() { return cust_industry; } public void setCust_industry(String cust_industry) { this.cust_industry = cust_industry; } public String getCust_level() { return cust_level; } public void setCust_level(String cust_level) { this.cust_level = cust_level; } public String getCust_linkman() { return cust_linkman; } public void setCust_linkman(String cust_linkman) { this.cust_linkman = cust_linkman; } public String getCust_phone() { return cust_phone; } public void setCust_phone(String cust_phone) { this.cust_phone = cust_phone; } public String getCust_mobile() { return cust_mobile; } public void setCust_mobile(String cust_mobile) { this.cust_mobile = cust_mobile; } }
4.创建映射文件
Hibernate 需要知道实体类Customer
映射到数据库 Hibernate 中的哪张表,以及类中的属性分别对应数据库表中的哪个字段,这些都需要在映射文件中配置。
在实体类Customer
所在的包中,创建一个名为Customer.hbm.xml
的映射文件,在该文件中定义了实体类Customer
的属性时如何映射到cst_customer
表的列上的。
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> <hibernate-mapping> <!-- 建立类和表的一个映射关系 --> <!-- class标签:用来建立类和表的映射 name属性:类中的全路径 table属性:表名(如果类名和表名一致,那么table属性可以省略) catalog属性:数据库名称,可以省略 --> <class name="com.bingo.domain.Customer" table="cst_customer"> <id name="cust_id" column="cust_id"> <!-- 主键生成策略 --> <generator class="native"></generator> </id> <!-- 建立类中的普通属性与表中的字段的映射 --> <property name="cust_name" column="cust_name"></property> <property name="cust_source" column="cust_source"></property> <property name="cust_industry" column="cust_industry"></property> <property name="cust_level" column="cust_level"></property> <property name="cust_linkman" column="cust_linkman"></property> <property name="cust_phone" column="cust_phone"></property> <property name="cust_mobile" column="cust_mobile"></property> </class> </hibernate-mapping>
5.创建Hibernate核心配置文件
Hibernate 的映射文件反映了持久化类和数据库表的映射信息,而 Hibernate 的配置文件则主要用来配置数据库连接以及 Hibernate 运行时所需要的各个属性的值。
在项目的src
下创建一个名称为hibernate.cfg.xml
的文件。
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://www.hibernate.org/dtd/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:///hibernate?useUnicode=true&characterEncoding=utf8&useSSL=true</property> <property name="hibernate.connection.username">root</property> <property name="hibernate.connection.password">123</property> <!-- 根据配置的方言生成相应的sql语句 --> <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property> <!-- Hibernate显示SQL语句 --> <property name="hibernate.show_sql">true</property> <!-- Hibernate格式化SQL语句 --> <property name="hibernate.format_sql">true</property> <!-- hbm2ddl.auto的取值 * create:每次都会创建一个新的表(测试用) * create-drop:每次都会创建一个新的表,执行程序结束后删除这个表(测试用) * update:如果数据库中有表,使用原来的表;如果没有表,创建一个新的表,可以更新表结构 * validate:只会使用原来的表,对映射关系进行校验 --> <property name="hibernate.hbm2ddl.auto">update</property> <!-- Hibernate加载映射 --> <mapping resource="com/bingo/domain/Customer.hbm.xml"/> </session-factory> </hibernate-configuration>
6. 编写测试代码
在项目中新建一个名称为com.bingo.test
的包,然后在包中建立一个名为Demo.java
的文件,该文件是用来测试的类文件。
package com.bingo.test; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.Transaction; import org.hibernate.cfg.Configuration; import org.junit.Test; import com.bingo.domain.Customer; //测试hibernate public class Demo { @Test public void fun1() { Configuration conf = new Configuration().configure(); SessionFactory sessionFactory = conf.buildSessionFactory(); Session session = sessionFactory.openSession(); Transaction tx = session.beginTransaction(); Customer c = new Customer(); c.setCust_name("bingo"); session.save(c); tx.commit(); session.close(); sessionFactory.close(); } }
首先创建Configuration
类的实例,并通过它来读取并解析配置文件hibernate.cfg.xml
。然后创建SessionFactory
读取解析映射文件信息,并将Configuration
对象中的所有配置信息拷贝到SessionFactory
内存中。接下来,打开Session
,让Session
提供连接并开启一个事务,之后创建对象,向对象中添加数据,通过session.save()
方法完成向数据库中保存数据的操作。最后提交事务,并关闭资源。
End...