Spring 整合 hibernate 时,抛异常: createQuery is not valid without active transaction

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

如果为thread 则会报该异常。


解决方案:

将 thread 删除,

或者改为默认值:org.springframework.orm.hibernate3.SpringSessionContext


你可能感兴趣的:(Java)