Springboot配置Hibernate Session

Springboot配置Hibernate Session

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

  • 在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

上一篇:【UE4 C++】ConstrcorHelper::FClassFinder 查找路径问题引起项目奔溃


下一篇:线程池