首页 > 编程语言 > 详细

Springboot配置Hibernate Session

时间:2021-09-01 14:58:52      阅读:10      评论:0      收藏:0      [点我收藏+]

Springboot配置Hibernate Session

近期公司老项目需要从Spring MVC升级到Springboot,项目DAO层针对Hibernate Session进行了大量的封装,但是在升级过程中发现SessionFactory无法注入,找了几种方式都没有成功,最后在stackoverflow上找到的方法如下:

  • 在application.properties中配置
spring.jpa.properties.hibernate.current_session_context_class=org.springframework.orm.hibernate5.SpringSessionContext
  • 在DAO层通过以下代码获取Hibernate Session
@PersistenceContext
 private EntityManager entityManager;

 public Session getSession() {
  return entityManager.unwrap(Session.class);
 }

Springboot配置Hibernate Session

原文:https://www.cnblogs.com/tiro8183/p/15207922.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!