其他分享
首页 > 其他分享> > Springboot配置Hibernate Session

Springboot配置Hibernate Session

作者:互联网

Springboot配置Hibernate Session

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

spring.jpa.properties.hibernate.current_session_context_class=org.springframework.orm.hibernate5.SpringSessionContext
@PersistenceContext
 private EntityManager entityManager;

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

标签:Hibernate,Springboot,Session,DAO,entityManager,class
来源: https://www.cnblogs.com/tiro8183/p/15207922.html