java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener

后端 未结 30 1617
南旧
南旧 2020-11-22 16:58

I included these in the Build Path:

  • all Spring libs
  • Apache Tomcat 7.0 library

The project still fails during startup:

30条回答
  •  不知归路
    2020-11-22 17:18

    I also had the same error. I had not added the below dependency in my POM file.

    
        org.springframework
        spring-web
        4.1.7.RELEASE
      
    

    But My porject used to run even before I had added this dependency. But at one point it stopped and started giving the same above error.

    If any one couldn't solve this error they can also solve by this link

提交回复
热议问题