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

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

1、查看一下有没有以下两个jar包

spring-web-4.0.0.RELEASE.jar
spring-webmvc-4.0.0.RELEASE.jar

2、就是web.xml里面对Spring资源文件的配置有没有问题

资源配置有两种,一种是默认的形式

 
        contextConfigLocation
        classpath:applicationContext.xml
    

    
        org.springframework.web.context.ContextLoaderListener
    

第二种是自定义的形式


        随意命名XXY
        classpath:applicationContext.xml
    

    
        实现类的全路径
    

这个类要实现ServletContextListener接口,重写方法

这里的tjnContext就是上面web.xml里面的  随意命名XXY

java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener_第1张图片

你可能感兴趣的:(java之ssh框架专栏)