hibernate简介
Hibernate对jdbc做了一层封装,是数据持久层的一个轻量级框架,并且Hibernate是一个开源的orm(Object relations mapping,对象关系映射)框架,提供了查询获取数据的方法,用面向对象的思想来操作数据库,节省了开发处理数据的时间,还可以根据对象自动生成数据库。
Hibernate优缺点
优点:
(1)提高生产力:封装彻底,减少了代码量;
(2)使开发更加对象化(解决了阻抗不匹配):所有操作都变成面向对象了,不再进行表操作。
(3)没有侵入性,可移植性:什么是没有侵入性?就是Hibernate采用了pojo对象。所谓的pojo对象就是没有继承Hibernate类或实现Hibernate接口。这样的话,此类就是一个普通的java类,所以移植性比较好。
(4)支持透明持久化:透明是针对上层而言的。三层架构的理念是上层对下层的依赖,只是依赖接口不依赖具体实现。而Hibernate中的透明是指对业务逻辑层提供了一个接口session,而其他的都封装隐藏。持久化是指把内存中的数据存放到磁盘上的文件中。
缺点:使用数据库特性的语句,将很难调优(封装彻底,使用数据库的存储过程之类的特性东西将不方便);大批量数据更新存在问题。
Hibernate示例
本Demo使用的是MyEclipse、Mysql数据库、Tomact7.0和jek6环境。
需要的下载的jar包:
引入的jar包
Hibernate3.jar:hibernate核心包
dom4j-1.6.1.jar:读写xml文件
mysql-connector-jar-3.1.13-bin.jar:mysql数据库驱动
commons-logging-1.0.4.jar:日志包
commons-collections-2.1.1.jar:对标准java Collection的扩展
cglib-2.1.3.jar:Spring中自动代理所需jar包
jta.jar:标准的java事务处理接口
asm.jar:ASM字节码库
可以选择自己需要的hibernate jar包引入,也可以将下载的hibernate.jar包lib下的所有jar包都引入。
代码:
首先,需要建立一个实体类User.java
<span style="font-family:KaiTi_GB2312;font-size:18px;">package com.jmj.hibernate;
import java.util.Date;
/**
* @author meng
*
*/
public class User {
private String id;
private String name;
private String password;
private Date createTime;
private Date expireTime;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Date getExpireTime() {
return expireTime;
}
public void setExpireTime(Date expireTime) {
this.expireTime = expireTime;
}
}
</span>
User.hbm.xml
映射文件:.hbm.xml,配置实体和数据库表、字段的映射关系
<span style="font-family:KaiTi_GB2312;font-size:18px;"><?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<class name="com.jmj.hibernate.User">
<id name="id">
<!--设置主键为自动生成-->
<generator class="uuid"></generator>
</id>
<property name="name"/>
<property name="password"/>
<property name="createTime"/>
<property name="expireTime"/>
</class>
</hibernate-mapping></span>
hibernate.cfg.xml
数据库连接配置文件,此处需要配置映射文件
<span style="font-family:KaiTi_GB2312;font-size:18px;"><!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>
<!--hibernate_first为你的数据库名称-->
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/hibernate_first</property>
<property name="hibernate.connection.username">用户名</property>
<property name="hibernate.connection.password">密码</property>
<!-- 配置适配器,SQL方言 -->
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<!-- 打印sql语句 -->
<property name="hibernate.show_sql">true</property>
<!-- 格式化sql语句 -->
<property name="hibernate.format_sql">true</property>
<!--hibernate与数据库的对象关系映射文件**.hbm.xml-->
<mapping resource="com/jmj/hibernate/User.hbm.xml"/>
</session-factory>
</hibernate-configuration></span>
导出表,此步骤只能导出表,具体的数据库需要使用sql语句在mysql数据库中建立。
<span style="font-family:KaiTi_GB2312;font-size:18px;">package com.jmj.hibernate;
import org.hibernate.cfg.Configuration;
import org.hibernate.tool.hbm2ddl.SchemaExport;
/**
* 将hbm生成ddl,导出表,具体的数据库不会建立,需要建立
* @author meng
*
*/
public class ExportDB {
public static void main(String[] args){
//默认读取hibernate.cfg.xml文件
Configuration cfg=new Configuration().configure();
SchemaExport export=new SchemaExport(cfg);
//打到控制台,输入到数据库
export.create(true,true);
}
}
</span>
客户端测试
<span style="font-family:KaiTi_GB2312;font-size:18px;">package com.jmj.hibernate;
import java.util.Date;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
public class Client {
/**
* @param args
*/
public static void main(String[] args) {
//读取hibernate.cfg.xml文件
Configuration cfg=new Configuration().configure();
//建立SessionFactory
SessionFactory factory=cfg.buildSessionFactory();
//取得Session
Session session=null;
try {
session=factory.openSession();
//开启事务
session.beginTransaction();
//给实体类赋值
User user=new User();
user.setName("jmj");
user.setPassword("123");
user.setCreateTime(new Date());
user.setExpireTime(new Date());
//将对象保存在数据库中
session.save(user);
//提交事务:首先拿到当前事务,然后提交
session.getTransaction().commit();
} catch (Exception e) {
e.printStackTrace();
//回滚事务
session.getTransaction().rollback();
}finally{
//关闭session
if (session!=null) {
if (session.isOpen()) {
session.close();
}
}
}
}
}
</span>
代码完成后,在客户端测试类中,点击Run As-->Java Application,运行,就会在hibernate_first数据库中成功建立User表,并添加数据。如图: