Spring 3.1, Hibernate 4, SessionFactory

后端 未结 6 2163
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-02 09:46

This was working:



        
6条回答
  •  臣服心动
    2020-12-02 10:26

    • In the case of Hibernate 4.0 or higher, as of Spring 4.0, you should use
    org.springframework.orm.hibernate4.LocalSessionFactoryBean
    

    For example:

    
        ...
    
    

    See http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/orm/hibernate4/LocalSessionFactoryBean.html

    • In the case of Hibernate 5.0/5.1/5.2, as of Spring 4.3, you should better instead use
    org.springframework.orm.hibernate5.LocalSessionFactoryBean
    

    (See http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/orm/hibernate5/LocalSessionFactoryBean.html)

提交回复
热议问题