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

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

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

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

此时运行测试会报: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

相关文章:

  • 2021-06-01
  • 2022-12-23
  • 2021-10-23
  • 2021-09-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-03-03
  • 2021-12-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-27
  • 2022-12-23
相关资源
相似解决方案