java.lang.ClassNotFoundException: org.springframework.orm.hibernate4.LocalSessionFactoryBean

前端 未结 3 2091
隐瞒了意图╮
隐瞒了意图╮ 2021-01-05 01:15

I\'m new to Spring this is my first example (JSF 2, PrimeFaces 3, Spring & Hibernate Integration) here\'s the pom.xml :



        
3条回答
  •  無奈伤痛
    2021-01-05 02:04

    Thanks to Mark While I am doing the same problem

    1. Sometimes eclipse will add spring 2.5 jar from local/.m2 Delete it from build path, or even you add spring 4.1, it will still use spring 2.5

    2 You should have spring orm dependency in you Maven-dependency add this to pom.xml

     
       org.springframework
       spring-orm
       4.1.6.RELEASE
    
    

提交回复
热议问题