读书人

spring中OpenSessionInViewFilter与Se

发布时间: 2013-06-26 14:29:32 作者: rapoo

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
[解决办法]
上楼说的比较靠谱哦!

读书人网 >J2EE开发

热点推荐