<转>如果你报createSQLQuery is not valid without active transaction,请看这里

很多时候我们使用hibernate的session时,都是让session在 某一运行环境中保持其唯一。例如在同一线程内用同一个session,在同一方法内用同一session,这样我们就可以用session里面缓存好的数 据。但,我想说的不是缓存,且听我一一道来。
        最近试用spring3.0.2+struts2.18+hibernate3.3.2学习搭建一个web项目,出现了一个相当郁闷的问题。就是我明明配置好了spring管理hibernate事务了,
我在dao中执行hibernate的方法时,如save,delete,update,createQuery,总是说不能在没有活动的事务中执行
(org.hibernate.HibernateException: createSQLQuery is not valid without
active
transaction)。
立马上google查,一无所获。曾几度怀疑是否配置写出了,dao或service写错了,改来改去的
依旧存在问题。当时相当郁闷啊,想啊,你spring不是帮我管理事务么?你不自动开启事务啊,还要我手动开启啊。立马查spring文档,从中文到英
文,没发现什么有参考价值的线索,真是相当的打击。代码乱改一通,发现用spring的hibernatetemplate来进行数据操作又正常无比。不
死心的去查了hibernate的doc,一个不留神给哥发现了一个冗长的配置属
性:hibernate.current_session_context_class。心里巨爽无比,就是你丫啦。小样的,哥把你灭了。
        hibernate.current_session_context_class是做什么用的呢?通俗点来讲,就是配置session绑定到某一运行环境,例如从同一个线程中用getCurrentSession()取得的session都是同一个,当前没有session就自动创建一个返回给你丫用。问题就出在这里了,官方文档如下说:

使用 Hibernate 的大多数应用程序需要某种形式的“上下文相关的”会话,特定的会话在整个特
定的上下文范围内始终有效。然而,对不同类型的应用程序而言,要为什么是组成这种“上下文”下一个定义通常是困难的;不同的上下文对“当前”这个概念定义了不同的范围。在 3.0 版本之前,使用 Hibernate 的程序要么采用自行编写的基于 ThreadLocal 的上下文会话,要么采用HibernateUtil 这样的辅助类,要么采用第三方框架(比如 Spring 或 Pico),它们提供了基于代理(proxy)或者基于拦截器(interception)的上下文相关的会话。从
3.0.1 版本开始,Hibernate 增加了SessionFactory.getCurrentSession() 方法。
一开始,它假定了采用 JTA 事务,JTA 事务定义了当前 session 的范围和上下文(scope 和 context)。因为有好几个独立的 JTA TransactionManager 实现稳定可用,不论是否被部署到一个 J2EE 容器中,
大多数(假若不是所有的)应用程序都应该采用 JTA 事务管理。基于这一点,采用 JTA 的上下文相关的会话可以满足你一切需要。

再来看我的配置,讲
hibernate.current_session_context_class的值设成thread。按我简单的理解就是将
getCurrentSession()返回的session绑定到当前运行线程中。比较专业的说法是此session的上下文是thread,但不是
spring已经托管的那个Session对象。再用哥那大腿想了几下,瞬间了解了一些。所以获取的session是在spring代理的上下文之外的的
当前线程之中,所以此session并非事务管理器代理的那个session,不会自动开启事务。根据官方提示:第三方框架提供了基于代理(proxy)
或者基于拦截器(interception)的上下文相关的会话的管理,所以把hibernate.current_session_context_class设置删除了,一切又回到当初风平浪静的日子了。

参考http://justsee.iteye.com/blog/1061576,终于了解这个问题的前因后果。摘录如下:

在ssh2中的sessionFactory配置文件中应将
hibernate.current_session_context_class设为
org.springframework.orm.hibernate3.SpringSessionContext(默认为此值),并应用spring
管理事务。

如果为<prop key="hibernate.current_session_context_class">thread</prop> 则会报异常,

原因还是spring中hibernate.current_session_context_class的问题

在spring的类LocalSessionFactoryBean源码,方法buildSessionFactory中将
hibernate.current_session_context_class设为
org.springframework.orm.hibernate3.SpringSessionContext

碰到这个错误弄了好久

<转>如果你报createSQLQuery is not valid without active transaction,请看这里,布布扣,bubuko.com

时间: 2024-10-13 12:35:04

<转>如果你报createSQLQuery is not valid without active transaction,请看这里的相关文章

编程异常——假设你报createSQLQuery is not valid without active transaction,...

非常多时候我们使用hibernate的session时,都是让session在某一执行环境中保持其唯一. 比如在同一线程内用同一个session.在同一方法内用同一session,这样我们就能够用session里面缓存好的数据.但.我想说的不是缓存,且听我一一道来. 近期试用spring3.0.2+struts2.18+hibernate3.3.2学习搭建一个web项目,出现了一个相当郁闷的问题. 就是我明明配置好了spring管理hibernate事务了,当我在dao中运行hibernate的

编程异常——如果你报createSQLQuery is not valid without active transaction,...

很多时候我们使用hibernate的session时,都是让session在某一运行环境中保持其唯一.例如在同一线程内用同一个session,在同一方法内用同一session,这样我们就可以用session里面缓存好的数据.但,我想说的不是缓存,且听我一一道来. 最近试用spring3.0.2+struts2.18+hibernate3.3.2学习搭建一个web项目,出现了一个相当郁闷的问题.就是我明明配置好了spring管理hibernate事务了,当我在dao中执行hibernate的方法时

Spring不能给sessionFactory注入值的问题,以及org.hibernate.HibernateException: createQuery is not valid without active transaction异常

在Struts2+Spring3+Hibernate4的框架下,本来想在DAO中通过setter注入,给sessionFactory赋值,但是却出现NullPointerException的异常.经过调试,发现sessionFactory的值为null.后来发现,原来在service层中,这个DAO类的对象是通过new得来的,而不是通过Spring注入的.因此这个new出来的DAO对象,没有被Spring注入sessionFactory,必然它的sessionFactory为空了.于是改为由Sp

save is not valid without active transaction

org.hibernate.HibernateException: save is not valid without active transaction at org.hibernate.context.ThreadLocalSessionContext$TransactionProtectionWrapper.invoke(ThreadLocalSessionContext.java:340) at com.sun.proxy.$Proxy4.save(Unknown Source) at

Hibernate 与Spring整合出现 hibernate.HibernateException: createCriteria is not valid without active transaction

当 Hibernate 和 Spring 整合时,在 Spring 中指定的 Hibernate.cfg.xml 文件内容中要注释掉以下内容: <!-- Enable Hibernate's automatic session context management --> <!-- <property name="current_session_context_class">thread</property> -->这样,才能将 Hibe

org.hibernate.HibernateException: getFlushMode is not valid without active transaction

Spring & Hibernate 整合异常记录: 原因 <prop key="hibernate.current_session_context_class">thread</prop> 注释该配置即可.

项目记录:spring+springmvc 项目中 @Transactional 失效的解决方法

第一步,修改spring的配置文件和springmvc的配置文件 --------------------------------applicationContext.xml <context:annotation-config/>  <context:component-scan base-package="com.xxx"> <context:exclude-filter type="annotation" expression=&

HibernateException: No Hibernate Session bound to thread

解决No Hibernate Session bound to thread 背景交代 在使用this.getHibernateTemplate().getSessionFactory().getCurrentSession()方法获取session时报以下异常信息: org.hibernate.HibernateException: No Hibernate Session bound to thread, and conf iguration does not allow creation

hibernate常见问题?

1. <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean"> hibernate4版本<prop key="hibernate.current_session_context_class">thread</prop>--->获取当前会话会导致如下结果: 异常信息:org.hi