在Spring Boot(1.5.3)应用程序中,我曾经使用以下配置来注入Hibernate(5.0.12)会话:
spring.jpa.properties.hibernate.current_session_context_class=
org.springframework.orm.hibernate4.SpringSessionContext
当我将其替换为:
spring.jpa.properties.hibernate.current_session_context_class=
org.springframework.orm.hibernate5.SpringSessionContext
我在第一次请求后立即得到org.hibernate.LazyInitializationException: could not initialize proxy - no Session
。
为什么使用hibernate5.SpringSessionContext不能与Hibernate 5一起使用?