学习过hibernate很久了,但是由于公司的项目使用mybatis作为项目持久层框架,所以在实际的工作中hibernate没了用武之地。为了不会随着时间的流逝而忘却了最初的hibernate,在此写点东西作为纪念。
1.基本作用:hibernate框架主要用于对数据库的操作,是对JDBC的封装。在应用中实现数据访问层。
2.优点:
3.基本原理:ORM,Object Relation Mapping,对象关系映射。可以完成java对象和数据表记录之间的映射,只需要在业务层对对象进行操作就可以实现对数据库的操作。
1.主要步骤
在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>
<!--show_sql和format_sql用于显示hibernate生成的sql语句,以及格式化sql语句-->
<property name="show_sql">true</property>
<property name="format_sql">true</property>
<!-- 将session与Thread绑定 -->
<property name="current_session_context_class">thread</property>
<!--dialect,方言,对于不同的数据库对应不同的方言-->
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
<!--数据库驱动 -->
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<!-- JDBC URL -->
<property name="connection.url">jdbc:mysql://localhost:3306/earl_test</property>
<!-- 数据库用户名 -->
<property name="connection.username">root</property>
<!-- 数据库密码 -->
<property name="connection.password"></property>
<!-- 映射描述文件 -->
<mapping resource="config/mapping/Pet.hbm.xml"/>
</session-factory>
</hibernate-configuration>
定义实体类Pet,如下:
import java.sql.Date;
public class Pet {
private int id;
private String name;
private String owner;
private String species;
private int sex;
private Date birth;
private Date death;
private boolean is_dead;
//TODO 各个属性的getter和setter,以及toString方法
......
}
定义映射描述文件,例如Pet.hbm.xml
<?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="com.earl.entity.Pet" table="pet" >
<id name="id" column="id" type="integer">
<generator class="identity"></generator>
</id>
<property name="name" column="name" type="string"/>
<property name="owner" column="owner" type="string"/>
<property name="species" column="species" type="string"/>
<property name="sex" column="sex" type="int"/>
<property name="birth" column="birth" type="date"/>
<property name="death" column="death" type="date"/>
<!--对于boolean类型,hibernate对应的数据类型是yes_no或true_false-->
<property name="is_dead" column="is_dead" type="yes_no"/>
</class>
</hibernate-mapping>
2.基本操作
基本操作就是针对于数据库的CURD操作。
先创建一张测试表,这张表也是我之前练习时从其他地方找来的,下面是建表语句及数据。
CREATE TABLE IF NOT EXISTS `pet` ( `id` int(10) NOT NULL AUTO_INCREMENT, `name` varchar(20) DEFAULT NULL, `owner` varchar(20) DEFAULT NULL, `species` varchar(20) DEFAULT NULL, `sex` int(11) DEFAULT NULL, `birth` date DEFAULT NULL, `death` date DEFAULT NULL, `is_dead` char(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
INSERT INTO `pet` (`id`, `name`, `owner`, `species`, `sex`, `birth`, `death`, `is_dead`) VALUES (1, 'nokia', 'Harold', 'cat', 1, '1993-02-04', NULL, 'N'), (2, 'Claws', 'Gwen', 'cat', 0, '1994-03-17', NULL, 'n'), (3, 'Buffy', 'Harold', 'dog', 1, '1989-05-13', NULL, 'n'), (4, 'Fang', 'Benny', 'dog', 1, '1990-08-27', NULL, 'n'), (5, 'Bowser', 'Diane', 'dog', 0, '1979-08-31', '1995-07-29', 'y'), (6, 'Chirpy', 'Gwen', 'bird', 1, '1998-09-11', NULL, 'n'), (7, 'Whistler', 'Gwen', 'bird', 1, '1997-12-09', NULL, 'n'), (8, 'Slim', 'Benny', 'snake', 0, '1996-04-29', NULL, 'n'), (9, 'Tom', 'Jerry', 'cat', 1, '2016-01-11', NULL, 'N');
废话不多说,下面来看看具体的使用。
@Test
public void testInsert(){
java.util.Date birthDate=new java.util.Date();
//创建对象,为属性赋值
Pet pet=new Pet();
pet.setName("Tom");
pet.setOwner("Jerry");
pet.setSpecies("cat");
pet.setSex(1);
pet.setBirth(new Date(birthDate.getTime()));
pet.setIs_dead(true);
//通过configuration获取session工厂,进而得到session
Configuration configuration=new Configuration();
configuration.configure();
SessionFactory factory=configuration.buildSessionFactory();
Session session=factory.openSession();
//为保证数据安全性,对于添加,修改,删除操作,必须要在事务中处理
Transaction transaction=session.beginTransaction();
//调用hibernate的API进行插入
session.save(pet);
transaction.commit();
session.close();
}
@Test
public void testDelete(){
Pet pet=new Pet();
pet.setId(11);
//这里SessionUtil是对Session的创建及关闭进行了封装
Session session=SessionUtil.getSession();
Transaction transaction=session.beginTransaction();
session.delete(pet);
transaction.commit();
SessionUtil.closeSession(session);
}
@Test
public void testUpdate(){
Session session=SessionUtil.getSession();
Transaction transaction=session.beginTransaction();
//对于更新操作,必须要先从数据库中查询到要更新的对象,再将其属性进行更新
//load方法是按照主键查询,返回根据主键查询到的对象
Pet pet=session.load(Pet.class, 9);
pet.setSpecies("cat");
pet.setName("Tom");
pet.setOwner("Jerry");
session.update(pet);
transaction.commit();
SessionUtil.closeSession(session);
}
select from Pet
select * from pet
@Test
public void testFindAll(){
Session session=SessionUtil.getSession();
String hql="from Pet";
Query query=session.createQuery(hql);
//因为没有加过滤条件,所以这里会查询出所有的pet记录
List<Pet> pets=query.list();
for(Pet pet:pets){
System.out.println(pet);
}
SessionUtil.closeSession(session);
}
以上就是对hibernate的一个基本使用了。之后会有文章再对hibernate的主要配置文件hibernate.cfg.xml,对象映射文件hbm.xml,以及HQL进行更加详细的说明。OK,bye,See you later!