码迷,mamicode.com
首页 > Web开发 > 详细

Hibernate中getCurrentSession()与openSession()的区别及应用

时间:2018-08-06 15:21:04      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:back   code   open   factor   nfa   事务   etc   xml文件   区别   

获取openSession和CurrentSession:
session=HibernateSessionFactory.getSession();
session=HibernateSessionFactory.getSessionFactory().getCurrentSession();

1、getCurrentSession()与openSession()的区别?

* 采用getCurrentSession()创建的session会绑定到当前线程中,而采用openSession()创建的session则不会
* 采用getCurrentSession()创建的session在commit或rollback时会自动关闭,而采用openSession()创建的
    session必须手动关闭

2、使用getCurrentSession()需要在hibernate.cfg.xml文件中加入如下配置

* 如果使用的是本地事务(jdbc事务)
<property name="hibernate.current_session_context_class">thread</property>
* 如果使用的是全局事务(jta事务)
<property name="hibernate.current_session_context_class">jta</property>

Hibernate中getCurrentSession()与openSession()的区别及应用

标签:back   code   open   factor   nfa   事务   etc   xml文件   区别   

原文地址:http://blog.51cto.com/1197822/2155254

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!