getCurrentSession 与 openSession区别

Posted weishao-lsv

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了getCurrentSession 与 openSession区别相关的知识,希望对你有一定的参考价值。

getCurrentSession () 使用当前的session
openSession()重新建立一个新的session

 

使用SessionFactory.getCurrentSession()需要在hibernate.cfg.xml中如下配置:

* 如果采用jdbc独立引用程序配置如下:
<property name="hibernate.current_session_context_class">thread</property>
* 如果采用了JTA事务配置如下 
<property name="hibernate.current_session_context_class">jta</property>
Session session = HibernateUnit.getSessionFactory().getCurrentSession();
session.beginTransaction();
....
session.getTransaction().commit();

 

使用openSession()不需要配置如上的hibernate.cfg.xml配置

代码如下:

        Session session=HibernateUtils.openSession();
        Transaction transaction = session.beginTransaction();
        .......
        transaction.commit();
        session.close();

j

结论:在一个应用程序中,如果DAO 层使用Spring 的hibernate 模板,通过Spring 来控制session 的生命周期,则首选getCurrentSession ()

      如果使用的是getCurrentSession来创建session的话,在commit后,session就自动被关闭了,不用再session.close()了。

    但是如果使用的是openSession方法创建的session的话,那么必须显示的关闭session,也就是调用session.close()方法。这样commit后,session并没有关闭

    getcurrentSession()的Session 在第一次被使用的时候,即第一次调用getCurrentSession()的时候,其生命周期就开始。

    然后她被Hibernate绑定到当前线程。当事物结束的时候,不管是提交还是回滚,Hibernate会自动把Session从当前线程剥离,并且关闭。

    若在次调用 getCurrentSession(),会得到一个新的Session,并且开始一个新的工作单元。

 


以上是关于getCurrentSession 与 openSession区别的主要内容,如果未能解决你的问题,请参考以下文章

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

休眠 openSession() 与 getCurrentSession()

hibernate 的SessionFactory的getCurrentSession 与 openSession() 的区别

hibernate 的SessionFactory的getCurrentSession 与 openSession() 的区别

JTASessionContext 与 JDBCTransactionFactory 一起使用;使用 getCurrentSession() 无法正确操作自动刷新

Hibernate框架使用 getCurrentSession()获取Session对象相关问题