Springboot配置Hibernate Session

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);
 }
posted @ 2021-08-30 21:15  Tiro8183  阅读(463)  评论(0)    收藏  举报