spring整合hibernate的时候使用session的时候报:is not valid without active transaction

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/joker8023joker/article/details/78811734

在使用spring整合hibernate的,然后测试环境的时候报错:org.hibernate.HibernateException: save is not valid without active transaction

我使用的环境是spring4.3.*和hibernate5版本。以下是示例代码:

这里写图片描述

这里写图片描述

此时运行测试会报:org.hibernate.HibernateException: save is not valid without active transaction这个错误
网上查了一下说是spring高版本在使用事务的时候需要在spring配置文件中配置hibernate.current_session_context_class的属性值为org.springframework.orm.hibernate5.SpringSessionContext

改过来之后又报这个错误:org.hibernate.HibernateException: Could not obtain transaction-synchronized Session for current thread;
然后解决方法就是在spring中配置事务管理然后在相关类中注入事务就搞定了。
参考文档:
Hibernate4 No Session found for current thread原因
spring,hiberante之* is not valid without active transaction

猜你喜欢

转载自blog.csdn.net/joker8023joker/article/details/78811734