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,并且开始一个新的工作单元。

原文地址:https://www.cnblogs.com/weishao-lsv/p/8157618.html

时间: 2024-11-10 00:57:07

getCurrentSession 与 openSession区别的相关文章

getHibernateTemplate和getSession 区别, this.getHibernateTemplate().getSessionFactory().getCurrentSession()和OpenSession区别

SSH的项目中,使用getHibernateTemplate 与 getSession有什么的区别? 1.使用getSession()方法你只要继承 sessionFactory,而使用getHibernateTemplate()方法必须继承HibernateDaoSupport当然包括 sessionFactory,这点区别都不是特别重要的,下面这些区别就很重要了 2.getSession()方法是没有经过spring包装 的,spring会把最原始的session给你,在使用完之后必须自己调

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

1 getCurrentSession创建的session会和绑定到当前线程,而openSession不会. 2 getCurrentSession创建的线程会在事务回滚或事物提交后自动关闭,而openSession必须手动关闭 这里getCurrentSession本地事务(本地事务:jdbc)时 要在配置文件里进行如下设置 * 如果使用的是本地事务(jdbc事务) <property name="hibernate.current_session_context_class"

getCurrentSession 与 openSession() 的区别&lt;转&gt;

1 getCurrentSession创建的session会和绑定到当前线程,而openSession不会. 2 getCurrentSession创建的线程会在事务回滚或事物提交后自动关闭,而openSession必须手动关闭 这里getCurrentSession本地事务(本地事务:jdbc)时 要在配置文件里进行如下设置 * 如果使用的是本地事务(jdbc事务) <property name="hibernate.current_session_context_class"

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

获取openSession和CurrentSession: session=HibernateSessionFactory.getSession(); session=HibernateSessionFactory.getSessionFactory().getCurrentSession(); 1.getCurrentSession()与openSession()的区别? * 采用getCurrentSession()创建的session会绑定到当前线程中,而采用openSession()创建

Hibernate4之getCurrentSession和openSession

在一个应用程序中,如果DAO层使用Spring的hibernate模板,通过Spring来控制session的生命周期,则首选getCurrentSession 使用Hibernate的大多数应用程序需要某种形式的"上下文相关的"session,特定的session在整个特定的上下文范围内始终有效.然而,对不同类型的应用程序而言,要给为什么是组成这种"上下文"下一个定义通常是困难的:不同的上下文对"当前"这个概念定义了不同的范围.在3.0版本之前

Hibernate getCurrentSession()和openSession()的区别

通过getCurrentSession()创建的Session会绑定到当前线程上:openSession()不会. 通过getCurrentSession()获取Session,首先是从当前上下文中寻找旧的Session,如果没有,则创建新的Session:而openSession()是每次都创建新的Session. getCurrentSession()创建的Session在事物提交时自动关闭:openSession()创建的Session需要手动关闭. 1 @Test 2 public vo

Hibernate最全面试题

Hibernate常见面试题 Hibernate工作原理及为什么要用? Hibernate工作原理及为什么要用? 读取并解析配置文件 读取并解析映射信息,创建SessionFactory 打开Sesssion 创建事务Transation 持久化操作 提交事务 关闭Session 关闭SesstionFactory 使用Hibernate框架就不用我们写很多繁琐的SQL语句.Hibernate实现了ORM,能够将对象映射成数据库表,从而简化我们的开发! Hibernate是如何延迟加载(懒加载)

Java面试前需要了解的东西

一.前言 只有光头才能变强 回顾前面: 广州三本找Java实习经历 上一篇写了自己面试的经历和一些在面试的时候遇到的题目(笔试题和面试题). 我在面试前针对Java基础也花了不少的时间,期间也将自己写过的博文粗略地刷了一遍,同时也在网上找了不少比较好的资料(部分是没看完的).在这里给大家分享一下~~~ 这是我刷完自己写过的笔记写的一篇文章导航,针对于PC端的:https://zhongfucheng.bitcron.com/post/shou-ji/pcduan-wen-zhang-dao-ha

由openSession、getCurrentSession和HibernateDaoSupport浅谈Spring对事物的支持

由openSession.getCurrentSession和HibernateDaoSupport浅谈Spring对事物的支持 Spring和Hibernate的集成的一个要点就是对事务的支持,openSession.getCurrentSession都是编程式事务(手动设置事务的提交.回滚)中重要的对象,HibernateDaoSupport则提供了更方便的声明式事务支持. Hibernate中最重要的就是Session对象的引入,它是对jdbc的深度封装,包括对事务的处理,Session对