近期公司老项目需要从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);
}
原文:https://www.cnblogs.com/tiro8183/p/15207922.html