首页 > Web开发 > 详细

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

时间:2018-08-06 15:16:49      阅读:178      评论:0      收藏:0      [点我收藏+]
获取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()的区别及应用

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!