Hibernate5注入SessionFactory的正确姿势

pom中整合SpringBoot和Hibernate处:
确定springboot版本:


   org.springframework.boot
   spring-boot-starter-parent
   2.1.1.RELEASE
    

   
确定hibernate版本:
通过查看源码,发现hibernate的版本为5.3.7。

       


   org.springframework.boot
   spring-boot-starter-data-jpa


如果@Autowired直接注入SessionFactory的话,会报错:

entityManagerFactory must not be null.


此时注入SessionFactory的正确方法:   

@Autowired
private EntityManagerFactory entityManagerFactory;

public Session openSession() {
   return entityManagerFactory.unwrap(SessionFactory.class).openSession();
}

说明:

需要引入EntityManagerFactory而不是seesionFactory。hibernate4之后的版本,然后正常用就可以啦.....

 

 

打开wx扫一扫领取惊喜:

Hibernate5注入SessionFactory的正确姿势_第1张图片

                                                                                                                        我是一条随风飘摇的结尾符~~~

你可能感兴趣的:(spring注解,springBoot)