标签:hibernate 事物
在http://blog.51cto.com/13579086/2074232 这篇文章中,讲述了两种方法,将connection怎么从业务层传到持久层的在hibernate中,事物也是要在业务层绑到当前线程的局部变量上,持久层从当前线程的局部变量中取
Hibernate 5 自身提供了三种管理 Session 对象的方法
Session 对象的生命周期与本地线程绑定
Session 对象的生命周期与 JTA 事务绑定
Hibernate 委托程序管理 Session 对象的生命周期
在 Hibernate 的配置文件中, hibernate.current_session_context_class 属性用于指定 Session 管理方式, 可选值包括
thread: Session 对象的生命周期与本地线程绑定
jta*: Session 对象的生命周期与 JTA 事务绑定
managed: Hibernate 委托程序来管理 Session 对象的生命周期
绑定是通过的部分我们需要在主配置文件中加配置文件
<property name="hibernate.current_session_context_class">thread</property>
从当前线程中获取session的方法
sessionFactory.getCurrentSession();
标签:hibernate 事物
原文地址:http://blog.51cto.com/13579086/2084429