Hibernate的使用
一. Hibernate HelloWorld
1.1 搭建Hibernate開發(fā)環(huán)境步驟
1. 導入jar包
antlr-2.7.6.jar
c3p0-0.9.1.2.jar
commons-collections-3.1.jar
dom4j-1.6.1.jar
hibernate-jpa-2.0-api-1.0.0.Final.jar
hibernate3.jar
javassist-3.12.0.GA.jar
jta-1.1.jar
mysql-connector-java-5.1.12-bin.jar
slf4j-api-1.6.1.jar
2. 創(chuàng)建entity對象和對象的映射文件配置
Employee.java
Employee.hbm.xml
3. 在src/hibernate.cfg.xml 主配置文件下:
數(shù)據(jù)庫連接配置
加載所有的的映射(*.hbm.xml)
4. 測試使用
Hello Hibernate的基本文件細節(jié)
創(chuàng)建數(shù)據(jù)庫hibernate和表t_employee
CREATE TABLE `t_employee` (
`empId` int(11) NOT NULL AUTO_INCREMENT,
`empName` varchar(32) DEFAULT NULL,
`workDate` date DEFAULT NULL,
PRIMARY KEY (`empId`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
Employee.Java 實體類
package com.mrq.entity;
import java.util.Date;
public class Employee {
private int empId;
private String empName;
private Date workDate;
public int getEmpId() {
return empId;
}
public void setEmpId(int empId) {
this.empId = empId;
}
public String getEmpName() {
return empName;
}
public void setEmpName(String empName) {
this.empName = empName;
}
public Date getWorkDate() {
return workDate;
}
public void setWorkDate(Date workDate) {
this.workDate = workDate;
}
}
Employee.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 package="com.mrq.entity">
<class name="Employee" table="t_employee">
//主鍵
<id name="empId" column="empId"></id>
//非主鍵
<property name="empName" column="empName"></property>
<property name="workDate" column="workDate"></property>
</class>
</hibernate-mapping>
主配置文件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>
<!-- 數(shù)據(jù)庫配置 -->
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql:///hibernate?useUnicode=true&characterEncoding=utf8</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">1l9o9v0e</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property>
<property name="hibernate.show_sql">true</property>
<mapping resource="com/mrq/entity/Employee.hbm.xml" />
</session-factory>
</hibernate-configuration>
測試類 HibernateDemo.java
package com.mrq.main;
import java.util.Date;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;
import org.hibernate.classic.Session;
import org.junit.Test;
import com.mrq.entity.Employee;
public class HibernateDemo {
@Test
public void testHibernate() {
Employee employee = new Employee();
employee.setEmpId(1);
employee.setEmpName("工頭2");
employee.setWorkDate(new Date());
//獲取加載配置文件的管理類對象
Configuration configuration = new Configuration();
//加載默認路徑的主配置文件
configuration.configure();
SessionFactory sessionFactory = configuration.buildSessionFactory();
Session session = sessionFactory.openSession();
//開啟事務
Transaction tx = session.beginTransaction();
session.save(employee);
//提交事務
tx.commit();
//關閉
session.close();
sessionFactory.close();
}
}
運行測試方法,數(shù)據(jù)會增加一條記錄.
Hibernate的api
* Configuration: 配置管理類對象
config.configure()加載主配置文件,默認路徑src/ hibernate.cfg.xml
config.buildSessionFactory()創(chuàng)建session工廠對象
* SessionFactory: session工廠類 (hibernate.cfg.xml文件的代表)
sessionFactory.openSession();創(chuàng)建一個session對象
sessionFactory.getCurrentSession();創(chuàng)建或者獲取一個session對象
* Session : session對象維護了一個連接(Connection), 代表了與數(shù)據(jù)庫連接的會話球化。Hibernate最重要的對象: 只用使用hibernate與數(shù)據(jù)庫操作靖诗,都用到這個對象
session.beginTransaction(); 開啟一個事務; hibernate要求所有的與數(shù)據(jù)庫的操作必須有事務的環(huán)境,否則報錯考余!
* CRUD操作
session.save(obj); 保存一個對象
session.update(emp); 更新一個對象
session.saveOrUpdate(emp); 保存或者更新的方法:
1. 沒有設置主鍵骤坐,執(zhí)行保存券犁;
2. 有設置主鍵寄锐,執(zhí)行更新操作;
3. 如果設置主鍵不存在報錯!
* 主鍵查詢:
1.session.get(Employee.class, 1); 主鍵查詢
2. session.load(Employee.class, 1); 主鍵查詢 (支持懶加載)
* HQL查詢:
HQL查詢與SQL查詢區(qū)別:
SQL: (結構化查詢語句)查詢的是表以及字段; 不區(qū)分大小寫劣像。
HQL: hibernate query language 即hibernate提供的面向對象的查詢語言
查詢的是對象以及對象的屬性乡话。
區(qū)分大小寫。
* Criteria查詢:
完全面向對象的查詢驾讲。
本地SQL查詢:
復雜的查詢蚊伞,就要使用原生態(tài)的sql查詢,也可以吮铭,就是本地sql查詢的支持时迫!
(缺點: 不能跨數(shù)據(jù)庫平臺!)
Hibernate的CRUD
EmployeeDaoImpl.java
package com.mrq.dao.impl;
import java.util.List;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.Transaction;
import com.mrq.dao.EmployeeDao;
import com.mrq.entity.Employee;
import com.mrq.util.HibernateUtils;
public class EmployeeDaoImpl implements EmployeeDao {
@Override
public Employee findById(int id) {
// TODO Auto-generated method stub
Session session = null;
Transaction tx = null;
try {
session = HibernateUtils.getSession();
tx = session.beginTransaction();
Object object = session.get(Employee.class, id);
return (Employee)object;
} catch (Exception e) {
// TODO: handle exception
throw new RuntimeException(e);
}finally {
if (session!=null) {
if (tx!=null) {
tx.commit();
}
session.close();
}
}
}
@Override
public List<Employee> getAll() {
// TODO Auto-generated method stub
Session session = null;
Transaction tx = null;
try {
session = HibernateUtils.getSession();
tx = session.beginTransaction();
Query query = session.createQuery("from Employee");
return query.list();
} catch (Exception e) {
// TODO: handle exception
throw new RuntimeException(e);
}finally {
if (session!=null) {
if (tx!=null) {
tx.commit();
}
session.close();
}
}
}
@Override
public List<Employee> getAll(String employeeName) {
// TODO Auto-generated method stub
Session session = null;
Transaction tx = null;
try {
session = HibernateUtils.getSession();
tx = session.beginTransaction();
Query query = session.createQuery("from Employee where empName=?");
query.setParameter(0, employeeName);
return query.list();
} catch (Exception e) {
// TODO: handle exception
throw new RuntimeException(e);
}finally {
if (session!=null) {
if (tx!=null) {
tx.commit();
}
session.close();
}
}
}
@Override
public List<Employee> getAll(int index, int count) {
// TODO Auto-generated method stub
Session session = null;
Transaction tx = null;
try {
session = HibernateUtils.getSession();
tx = session.beginTransaction();
Query query = session.createQuery("from Employee");
query.setFirstResult(index); //查詢的開始行數(shù)
query.setMaxResults(count); //查詢的記錄總數(shù)
List<Employee> list = query.list();
return list;
} catch (Exception e) {
// TODO: handle exception
throw new RuntimeException(e);
}finally {
if (session!=null) {
if (tx!=null) {
tx.commit();
}
session.close();
}
}
}
@Override
public void save(Employee employee) {
// TODO Auto-generated method stub
Session session = null;
Transaction tx = null;
try {
session = HibernateUtils.getSession();
tx = session.beginTransaction();
session.save(employee);
} catch (Exception e) {
// TODO: handle exception
throw new RuntimeException(e);
}finally {
if (session!=null) {
if (tx!=null) {
tx.commit();
}
session.close();
}
}
}
@Override
public void update(Employee employee) {
// TODO Auto-generated method stub
Session session = null;
Transaction tx = null;
try {
session = HibernateUtils.getSession();
tx = session.beginTransaction();
session.update(employee);
} catch (Exception e) {
// TODO: handle exception
throw new RuntimeException(e);
}finally {
if (session!=null) {
if (tx!=null) {
tx.commit();
}
session.close();
}
}
}
@Override
public void delete(int id) {
// TODO Auto-generated method stub
Session session = null;
Transaction tx = null;
try {
session = HibernateUtils.getSession();
tx = session.beginTransaction();
Object object = session.get(Employee.class, id);
if (object!=null) {
session.delete(object);
}
} catch (Exception e) {
// TODO: handle exception
throw new RuntimeException(e);
}finally {
if (session!=null) {
if (tx!=null) {
tx.commit();
}
session.close();
}
}
}
}
HibernateUtils.java
package com.mrq.util;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
public class HibernateUtils {
private static SessionFactory sessionFactory;
static{
sessionFactory = new Configuration().configure().buildSessionFactory();
}
public static Session getSession() {
return sessionFactory.openSession();
}
}
二谓晌、Hibernate.cfg.xml 主配置
Hibernate.cfg.xml
主配置文件中主要配置:數(shù)據(jù)庫連接信息掠拳、其他參數(shù)、映射信息纸肉!
常用配置查看源碼:
hibernate-distribution-3.6.0.Final\project\etc\hibernate.properties
數(shù)據(jù)庫連接參數(shù)配置
例如:
## MySQL
#hibernate.dialect org.hibernate.dialect.MySQLDialect
#hibernate.dialect org.hibernate.dialect.MySQLInnoDBDialect
#hibernate.dialect org.hibernate.dialect.MySQLMyISAMDialect
#hibernate.connection.driver_class com.mysql.jdbc.Driver
#hibernate.connection.url jdbc:mysql:///test
#hibernate.connection.username gavin
#hibernate.connection.password
自動建表
Hibernate.properties
#hibernate.hbm2ddl.auto create-drop 每次在創(chuàng)建sessionFactory時候執(zhí)行創(chuàng)建表溺欧;
當調用sesisonFactory的close方法的時候喊熟,刪除表!
#hibernate.hbm2ddl.auto create 每次都重新建表姐刁; 如果表已經存在就先刪除再創(chuàng)建
#hibernate.hbm2ddl.auto update 如果表不存在就創(chuàng)建芥牌; 表存在就不創(chuàng)建;
#hibernate.hbm2ddl.auto validate (生成環(huán)境時候) 執(zhí)行驗證: 當映射文件的內容與數(shù)據(jù)庫表結構不一樣的時候就報錯聂使!
代碼自動建表:
// 自動建表
@Test
public void testCreate() throws Exception {
// 創(chuàng)建配置管理類對象
Configuration config = new Configuration();
// 加載主配置文件
config.configure();
// 創(chuàng)建工具類對象
SchemaExport export = new SchemaExport(config);
// 建表
// 第一個參數(shù): 是否在控制臺打印建表語句
// 第二個參數(shù): 是否執(zhí)行腳本
export.create(true, true);
}
三. 映射配置文件
1. 普通字段類型
2. 主鍵映射
單列主鍵映射
多列作為主鍵映射
主鍵生成策略壁拉,查看api: 5.1.2.2.1. Various additional generators
數(shù)據(jù)庫:
一個表能否有多個主鍵? 不能柏靶。
為什么要設置主鍵弃理? 數(shù)據(jù)庫存儲的數(shù)據(jù)都是有效的,必須保持唯一屎蜓。
(為什么把id作為主鍵痘昌?)
因為表中通常找不到合適的列作為唯一列即主鍵,所以為了方法用id列炬转,因為id是數(shù)據(jù)庫系統(tǒng)維護可以保證唯一辆苔,所以就把這列作為主鍵!
聯(lián)合/復合主鍵
如果找不到合適的列作為主鍵,除了用id列以外返吻,我們一般用聯(lián)合主鍵姑子,即多列的值作為一個主鍵乎婿,從而確保記錄的唯一性测僵。
映射配置
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<!-- 映射文件: 映射一個實體類對象; 描述一個對象最終實現(xiàn)可以直接保存對象數(shù)據(jù)到數(shù)據(jù)庫中谢翎。 -->
<!--
package: 要映射的對象所在的包(可選,如果不指定,此文件所有的類都要指定全路徑)
auto-import 默認為true捍靠, 在寫hql的時候自動導入包名
如果指定為false, 再寫hql的時候必須要寫上類的全名;
如:session.createQuery("from cn.itcast.c_hbm_config.Employee").list();
-->
<hibernate-mapping package="com.mrq.hbm_config" auto-import="true">
<!--
class 映射某一個對象的(一般情況森逮,一個對象寫一個映射文件榨婆,即一個class節(jié)點)
name 指定要映射的對象的類型
table 指定對象對應的表;
如果沒有指定表名褒侧,默認與對象名稱一樣
-->
<class name="Employee" table="t_employee">
<!-- 主鍵 良风,映射-->
<id name="empId" column="id">
<!--
主鍵的生成策略
identity 自增長(mysql,db2)
sequence 自增長(序列), oracle中自增長是以序列方法實現(xiàn)
native 自增長【會根據(jù)底層數(shù)據(jù)庫自增長的方式選擇identity或sequence】
如果是mysql數(shù)據(jù)庫, 采用的自增長方式是identity
如果是oracle數(shù)據(jù)庫闷供, 使用sequence序列的方式實現(xiàn)自增長
increment 自增長(會有并發(fā)訪問的問題烟央,一般在服務器集群環(huán)境使用會存在問題。)
assigned 指定主鍵生成策略為手動指定主鍵的值
uuid 指定uuid隨機生成的唯一的值
foreign (外鍵的方式歪脏, one-to-one講)
-->
<generator class="uuid"/>
</id>
<!--
普通字段映射
property
name 指定對象的屬性名稱
column 指定對象屬性對應的表的字段名稱疑俭,如果不寫默認與對象屬性一致。
length 指定字符的長度, 默認為255
type 指定映射表的字段的類型婿失,如果不指定會匹配屬性的類型
java類型: 必須寫全名
hibernate類型: 直接寫類型钞艇,都是小寫
-->
<property name="empName" column="empName" type="java.lang.String" length="20"></property>
<property name="workDate" type="java.util.Date"></property>
<!-- 如果列名稱為數(shù)據(jù)庫關鍵字啄寡,需要用反引號或改列名。 -->
<property name="desc" column="`desc`" type="java.lang.String"></property>
</class>
</hibernate-mapping>
復合主鍵映射配置
// 復合主鍵類
public class CompositeKeys implements Serializable{
private String userName;
private String address;
// .. get/set
}
public class User {
// 名字跟地址哩照,不會重復
private CompositeKeys keys;
private int age;
}
User.hbm.xml
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="com.mrq.compositeKey" auto-import="true">
<class name="User">
<!-- 復合主鍵映射 -->
<composite-id name="keys">
<key-property name="userName" type="string"></key-property>
<key-property name="address" type="string"></key-property>
</composite-id>
<property name="age" type="int"></property>
</class>
</hibernate-mapping>
測試類app.java
public class App {
private static SessionFactory sf;
static {
// 創(chuàng)建sf對象
sf = new Configuration()
.configure()
.addClass(User.class) //(測試) 會自動加載映射文件:Employee.hbm.xml
.buildSessionFactory();
}
//1. 保存對象
@Test
public void testSave() throws Exception {
Session session = sf.openSession();
Transaction tx = session.beginTransaction();
// 對象
CompositeKeys keys = new CompositeKeys();
keys.setAddress("廣州天河");
keys.setUserName("Jack");
User user = new User();
user.setAge(23);
user.setKeys(keys);
// 保存
session.save(user);
tx.commit();
session.close();
}
@Test
public void testGet() throws Exception {
Session session = sf.openSession();
Transaction tx = session.beginTransaction();
//構建主鍵再查詢
CompositeKeys keys = new CompositeKeys();
keys.setAddress("廣州天河");
keys.setUserName("Jack");
// 主鍵查詢
User user = (User) session.get(User.class, keys);
// 測試輸出
if (user != null){
System.out.println(user.getKeys().getUserName());
System.out.println(user.getKeys().getAddress());
System.out.println(user.getAge());
}
tx.commit();
session.close();
}
}