一.说明
实现一个线程只有一个session对象。
二.范例
1.代码块
(1)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
SessionFactory的作用就是创建session-factory对象。
Session对象是hibernate中操作数据库的核心对象
-->
<session-factory>
<!-- 注意:配置session-factory三要素
第一要素:连接数据库的信息
第二要素:hibernate的可选配置
第三要素:映射文件的位置
-->
<!-- 配置数据库连接池 -->
<property name="hibernate.connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider</property>
<!-- 第一部分:连接数据库的信息 -->
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/db7</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">root</property>
<!-- 设置数据库的方言 -->
<property name="hibernate.dialect org.hibernate.dialect.MySQLDialect"></property>
<!-- 第二部分:hibernate的可选配置 -->
<!-- 2.1配置显示hibernate的自动生成sql语句 -->
<!-- <property name="hibernate.show_sql">true</property>-->
<!-- 2.2使用格式化sql语句打印到控制台 -->
<property name="hibernate.format_sql">true</property>
<!-- 2.3配置hibernate何种方式生成DDL语句 -->
<!-- update表示检测是否实体类的映射配置和数据库的表结构一致,如果不一致,则更新表结构 -->
<!--
SQL结构化语言分类:一共6个部分
DDL:
DML:
DQL:
DCL:数据控制语言(权限控制)
CCL:游标控制语言(指针控制)
TPL:事务处理语言(事务控制)
-->
<property name="hibernate.hbm2ddl.auto">update</property>
<!-- 把session和线程绑定,从而实现一个线程只有一个session -->
<property name="hibernate.current_session_context_class">thread</property>
<!-- 第三部分:映射配置文件的位置 -->
<mapping resource="cn/dao/CustomerMapping.xml"></mapping>
</session-factory>
</hibernate-configuration>
(2)工具类
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
/**
* 封装一个Hibernate对象的工具栏
*/
public class HibernateUtil2 {
private static SessionFactory sessionFactory;
static {
try {
//加载hibernate主配置文件
Configuration cfg = new Configuration();
cfg.configure("hibernateConfig.xml");//设置加载配置文件
//获取一个sessionFactory对象
sessionFactory = cfg.buildSessionFactory();
}catch (ExceptionInInitializerError e){
throw new ExceptionInInitializerError("初始化工厂失败,请检查配置文件");
}
}
//只要使用open的方法,每次得到的是新的session
public static Session openSession(){
return sessionFactory.openSession();
}
//一个线程只有一个session对象
public static Session getCurrentSession(){
//注意:只有线程和session绑定后,才能使用此方法。
return sessionFactory.getCurrentSession();
}
}
(3)测试类
import cn.domain.Customer;
import cn.utils.HibernateUtil;
import cn.utils.HibernateUtil2;
import org.hibernate.Session;
import org.hibernate.Transaction;
import org.junit.Test;
/**
* 测试一个线程保持一个session
*/
public class HibernateTest03 {
@Test
public void test01()throws Exception{
Session session = HibernateUtil2.getCurrentSession();
Session session2 = HibernateUtil2.getCurrentSession();
System.out.println(session == session2);
}
/**
* 使用线程绑定的session不能关闭session
* @throws Exception
*/
@Test
public void test02()throws Exception {
Customer customer = new Customer();//瞬时状态
customer.setCustName("liming");
Session session = HibernateUtil2.getCurrentSession();
Transaction transaction = session.beginTransaction();
session.save(customer);//持久化状态
transaction.commit();
// session.close();//session在提交事务之后,自动进行关闭操作
}
}
2.范例
(1)xml配置文件
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-C5ynbrOp-1589608400024)(https://uploader.shimo.im/f/khEpFrPtJPglLyTw.png!thumbnail)]