hibernate理解

时间:2022-01-24 20:59:52

SSH框架:

Struts框架, 基于mvc模式的应用层框架技术!

Hibernate,基于持久层的框架(数据访问层使用)!

Spring,创建对象处理对象的依赖关系以及框架整合!

Dao代码,如何编写?

1.操作XML数据

2.使用Jdbc技术

3.原始的jdbc操作, Connection/Statement/ResultSet

a.自定义一个持久层框架, 封装了dao的通用方法

b.DbUtils组件, 轻量级的dao的组件;

c.Hibernate技术  【hibernate最终执行的也是jdbc代码!】

Hibernate是ORM的实现!

ORM 对象关系映射。      把对象的数据直接保存到数据库;直接从数据库中拿到一个对象。必须得有映射

1.引jar包

同struts。大家自己网上百度。

2.写对象及对象的映射

Dept.java

 package dao;
//对象
public class Dept {
private int deptId;
private String deptName;
public int getDeptId() {
return deptId;
}
public void setDeptId(int deptId) {
this.deptId = deptId;
}
public String getDeptName() {
return deptName;
}
public void setDeptName(String deptName) {
this.deptName = deptName;
} }

Dept.hbm.xml     对象的映射// 映射文件: 映射一个实体类对象;  描述一个对象最终实现可以直接保存对象数据到数据库中。

package: 要映射的对象所在的包(可选,如果不指定,此文件所有的类都要指定全路径)

class 映射某一个对象的(一般情况,一个对象写一个映射文件,即一个class节点)

name 指定要映射的对象的类型

table 指定对象对应的表;

如果没有指定表名,默认与对象名称一样

主键的生成策略

identity  自增长(mysql,db2)

sequence  自增长(序列), oracle中自增长是以序列方法实现

native  自增长【会根据底层数据库自增长的方式选择identity或sequence】

如果是mysql数据库, 采用的自增长方式是identity

如果是oracle数据库, 使用sequence序列的方式实现自增长

increment  自增长(会有并发访问的问题,一般在服务器集群环境使用会存在问题。)

assigned  指定主键生成策略为手动指定主键的值

uuid      指定uuid随机生成的唯一的值

foreign   (外键的方式, one-to-one讲)

普通字段映射

property

name  指定对象的属性名称

column 指定对象属性对应的表的字段名称,如果不写默认与对象属性一致。

length 指定字符的长度, 默认为255

type   指定映射表的字段的类型,如果不指定会匹配属性的类型

java类型:     必须写全名

hibernate类型:  直接写类型,都是小写

 <?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="dao">
<class name="Dept" table="t_dept"> //上边写的javabean 对应 一个 数据库中的表
<id name="deptId" column="deptId">//主键映射
<generator class="native"/>
</id>
         <property name="deptName" column="deptName">   //其他键  映射
</property>
</class>
</hibernate-mapping>

3.src/hibernate.cfg.xml  主配置文件

数据库连接配置

加载所用的映射(*.hbm.xml)

 <!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 name="foo">
<!-- 数据库连接配置 -->
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql:///test1</property>
<property name="hibernate.connection.username">mxning</property>
<property name="hibernate.connection.password">mxning</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property> <property name="hibernate.show_sql">true</property>
<!-- 加载所有映射 -->
<mapping resource="dao/Dept.hbm.xml"/>
</session-factory>
</hibernate-configuration>

4.测试

 package dao;

 import javax.transaction.HeuristicMixedException;
import javax.transaction.HeuristicRollbackException;
import javax.transaction.RollbackException;
import javax.transaction.SystemException;
import javax.transaction.Transaction; import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
import org.junit.Test; public class app{
@Test
public void testdept() throws Exception{
Dept d = new Dept();
d.setDeptName("xcxcxcx"); // 获取加载配置文件的管理类对象
Configuration config = new Configuration();
config.configure(); // 默认加载src/hibenrate.cfg.xml文件
// 创建session的工厂对象
SessionFactory sf = config.buildSessionFactory();
// 创建session (代表一个会话,与数据库连接的会话)
Session session = sf.openSession();
// 开启事务
Transaction tx = session.beginTransaction();
//保存-数据库
session.save(d);
// 提交事务
tx.commit();
// 关闭
session.close();
sf.close();
} }

Configuration       配置管理类对象

config.configure();    加载主配置文件的方法(hibernate.cfg.xml)   默认加载src/hibernate.cfg.xml

config.configure(“cn/config/hibernate.cfg.xml”);   加载指定路径下指定名称的主配置文件

config.buildSessionFactory();   创建session的工厂对象

SessionFactory     session的工厂(或者说代表了这个hibernate.cfg.xml配置文件)

sf.openSession();   创建一个sesison对象

sf.getCurrentSession();  创建session或取出session对象

Session       session对象维护了一个连接(Connection), 代表了与数据库连接的会话。

Hibernate最重要的对象: 只要使用hibernate与数据库操作,都用到这个对象

session.beginTransaction(); 开启一个事务; hibernate要求所有的与数据库的操作必须有事务的环境,否则报错!

session.save(obj);   保存一个对象到数据库中

session.update(emp);  更新一个对象

session.saveOrUpdate(emp);  保存或者更新的方法:

根据对象的状态决定是save 还是 update

a.没有设置主键,执行保存;

b.有设置主键,执行更新操作;

c.如果设置主键不存在报错!

主键查询:

session.get(Employee.class, 1);    主键查询

session.load(Employee.class, 1);   主键查询 (支持懒加载)返回的是代理,不会立即访问数据库。

HQL查询:

HQL查询与SQL查询区别:

SQL: (结构化查询语句)查询的是表以及字段;  不区分大小写。

HQL: hibernate  query  language 即hibernate提供的面向对象的查询语言

查询的是对象以及对象的属性

区分大小写。

hibernate的 CRUD

 public class EmployeeDaoImpl implements IEmployeeDao{

     @Override
public Employee findById(Serializable id) {
Session session = null;
Transaction tx = null;
try {
// 获取Session
session = HibernateUtils.getSession();
// 开启事务
tx = session.beginTransaction();
// 主键查询 ,会立刻访问数据库
return (Employee)session.get(Employee.class, id);
当我们需要使用这个类的时候可以用class的函数通过类名.class来加载这个类或者直接通过使用这个类来让虚拟机加载你的类.
类名.class是一个关联于类的对象。对于每一个类型都对应一个Class对象(基本类型除外)。
Class对象描述的是类的信息,包括静态属性、方法等,它是在类加载的时候生成的。
当要生成一个类型的对象是会先去检查是否已经存在该类的Class对象,否则视为该类为被加载!
} catch (Exception e) {
throw new RuntimeException(e);
} finally {
tx.commit();
session.close();
}
}
 public List<Employee> getAll() {
Session session = null;
Transaction tx = null;
try {
session = HibernateUtils.getSession();
tx = session.beginTransaction();
// HQL查询
Query q = session.createQuery("from Employee");
return q.list();
} catch (Exception e) {
throw new RuntimeException(e);
} finally {
tx.commit();
session.close();
}
}
 public List<Employee> getAll(String employeeName) {
Session session = null;
Transaction tx = null;
try {
session = HibernateUtils.getSession();
tx = session.beginTransaction();
Query q =session.createQuery("from Employee where empName=?");
// 注意:参数索引从0开始
q.setParameter(0, employeeName);
// 执行查询
return q.list();
} catch (Exception e) {
throw new RuntimeException(e);
} finally {
tx.commit();
session.close();
}
}
 public void save(Employee emp) {
Session session = null;
Transaction tx = null;
try {
session = HibernateUtils.getSession();
tx = session.beginTransaction();
// 执行保存操作,没有主键添加,有主键更新
session.save(emp);
} catch (Exception e) {
throw new RuntimeException(e);
} finally {
tx.commit();
session.close();
} }
 public List<Employee> getAll(int index, int count) {
Session session = null;
Transaction tx = null;
try {
session = HibernateUtils.getSession();
tx = session.beginTransaction();
Query q = session.createQuery("from Employee");
// 设置分页参数
q.setFirstResult(index); // 查询的其实行
10 q.setMaxResults(count); // 查询返回的行数 List<Employee> list = q.list();
return list;
} catch (Exception e) {
throw new RuntimeException(e);
} finally {
tx.commit();
session.close();
}
}