当前位置: 代码迷 >> J2EE >> spring中OpenSessionInViewFilter与SessionFactory.getCurrentSession()的摩擦
  详细解决方案

spring中OpenSessionInViewFilter与SessionFactory.getCurrentSession()的摩擦

热度:561   发布时间:2016-04-21 23:19:13.0
spring中OpenSessionInViewFilter与SessionFactory.getCurrentSession()的冲突
spring中OpenSessionInViewFilter的问题:
如果在使用OpenSessionInViewFilter的时候在dao层使用的是SessionFactory.getCurrentSession(),
那么根据Hibernate中SessionFactory.getCurrentSession(),它会在事务提交的时候会关闭session,
如果是这样的话就跟OpenSessionInViewFilter延迟session的生命周期有些矛盾了。。。


------解决方案--------------------
public final Session currentSession() throws HibernateException {  
      //从线程局部量context中尝试取出已经绑定到线程的Session  
      Session current = existingSession( factory );  
       
      //如果没有绑定到线程的Session  
      if (current == null) {  
         //打开一个”事务提交后自动关闭”的Session  
         current = buildOrObtainSession();  
            current.getTransaction().registerSynchronization(buildCleanupSynch() );  
         // wrap the session in thetransaction-protection proxy  
         if ( needsWrapping( current ) ) {  
            current = wrap( current );  
         }  
         //将得到的Session绑定到线程中:即以<SessionFactory,Session>键值对方式设置到线程局部量context  
         doBind( current, factory );  
      }  
      return current;  
   }
  
我觉得是这样,只有当前session为null时才会去创建“事务提交后自动关闭”的Session,而使用了OpenSessionInViewFilter的session在当前请求范围内不会为null
------解决方案--------------------
上楼说的比较靠谱哦!
  相关解决方案