java.lang.ClassNotFoundException: org.hibernate.engine.transaction.spi.TransactionContext

前端 未结 6 1208
傲寒
傲寒 2021-02-19 06:02

I am developing Spring MVC Hibernate Integration example. In this example I\'m using Spring 4.1.9.RELEASE and Hibernate 5.1.0.Final. If I

6条回答
  •  臣服心动
    2021-02-19 06:56

    In your pom.xml you have Hibernate 5,try to pass from hibernate5 to hibernate4) in your pom:

      4xxxx
      ...
      
            org.hibernate
            hibernate-entitymanager
            ${hibernate.version}
        
    

提交回复
热议问题