SessionFactory.getCurrentSession与openSession的区别

原来在做jbpm工作流时老是出现session的问题出现异常,算是办法也简单session.close(),原因是我在sevice层 openSession而忘记关闭,每写一个方法都必须这样。而采用getCurrentSession的话就不需要了,现总结两者间的区别:

1. 如果使用的是getCurrentSession来创建session的话,在commit后,session就自动被关闭了, 也就是不用 再session.close()了。但是如果使用的是openSession方法创建的session的话,那么必须显示的关闭session,也就是 调用session.close()方法。这样commit后,session并没有关闭。
2.  使用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>

 

另加:

HB3.X 版本中提供了一个getCurrentSession() 这个方法,这个方法和早期使用的openSession() 是有区别的。
openSession()
,表示创建了一个新的session 对象,当你使用完了以后就要必须调用close 方法来关闭当前的session
getCurrentSession()
,总是会返回 当前的 工作单元。Session 在第一次被使用的时候,即第一次调用getCurrentSession() 的时候,其生命周期就开始。然后她被Hibernate 绑定到当前线程。当事物结束的时候,不管是提交还是回滚,Hibernate 会自动把Session 从当前线程剥离,并且关闭。若在次调用getCurrentSession() ,会得到一个新的Session, 并且开始一个新的工作单元。这是Hibernate 最广泛的thread-bound model ,支持代码灵活分层( 事物划分和数据访问代码的分离)
但是使用他的时候有2 种配置:1JDBC 的配置<property name="hibernate.current_session_context_class">thread</property> 这个是表示采用jdbc 独立引用。
2
JTA 的配置<property name="hibernate.current_session_context_class">jta</property>
本人建议使用getCurrentSession() 更好这样就不用使用close 来关闭你的session

你可能感兴趣的:(Hibernate,工作,session,jdbc,jbpm)