您的位置:首页 > 其它

关于出现No Hibernate Session bound to thread问题的记录

2012-02-15 20:14 567 查看
Spring的getHibernateTemplate().getSessionFactory().getCurrentSession()的意思是得到当前线程绑定的session,而当前线程绑定的session是通过当前的事务产生的,如果没有配置事务的话,当前线程threadlocal中就不存在 session,这样就出现no session错误。

而execute的回调方法,看源码HibernateTemplate中写道

public Object execute(HibernateCallback action, boolean exposeNativeSession) throws DataAccessException {

Assert.notNull(action, "Callback object must not be null");

Session session = getSession();
boolean existingTransaction = (!isAlwaysUseNewSession() &&
(!isAllowCreate() || SessionFactoryUtils.isSessionTransactional(session, getSessionFactory())));

其中getSession,代码如下

protected Session getSession() {
if (isAlwaysUseNewSession()) {

return SessionFactoryUtils.getNewSession(getSessionFactory(), getEntityInterceptor());

}
else if (isAllowCreate()) {

return SessionFactoryUtils.getSession(

getSessionFactory(), getEntityInterceptor(), getJdbcExceptionTranslator());

}
else {
try {

return getSessionFactory().getCurrentSession();

}
catch (HibernateException ex) {

throw new DataAccessResourceFailureException("Could not obtain current Hibernate Session", ex);

}
}

其中默认private boolean alwaysUseNewSession = false,所以代码会走到else if (isAllowCreate())

注意这里:else if (isAllowCreate()),其中在HibernateTemplate类中默认private boolean allowCreate = true;其实通过函数名字就很清楚。意思说如果当前线程中的session不存在的话,是否允许创建,而默认是允许的,接下来是创建当前线程中的session的代码,所以在没有事务的状态下,用execute回调方法,就不会出现上述问题。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐