`

org.springframework.web.context.ContextLoaderServlet

 
阅读更多

一、错误:java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderServlet

 

二、背景:采用下面方式启动spring。

<servlet> 
    <servlet-name>contextConfigLocation</servlet-name> 
    <servlet-class> 
    org.springframework.web.context.ContextLoaderServlet 
    </servlet-class> 
    <load-on-startup>2</load-on-startup> 
 </servlet> 

 

三、原因:

1、是缺少了jar包?NO!(或许你的是,如果你使用的是spring 3.0以前的版本)

2、是因为spring 3.0中删除了ContextLoaderServlet!   悲剧吧?好了,这是问题的终极。

 

看看这篇:http://www.iteye.com/problems/33481  spring 3.0 中删除了ContextLoaderServlet?

分享到:
评论

相关推荐

    spring-web-2.5.jar

    org.springframework.web.context.ContextLoaderServlet.class org.springframework.web.context.ServletConfigAware.class org.springframework.web.context.ServletContextAware.class org.springframework.web....

    在Eclipse 中创建Spring的 Web应用.doc

    &lt;servlet-class&gt;org.springframework.web.context.ContextLoaderServlet &lt;load-on-startup&gt;1 ``` 4. **指定配置文件位置**: 你可以通过`&lt;context-param&gt;`元素来定义`ApplicationContext`的配置参数,指明XML...

    加载spring 文件,在web.xml中的配置

    `&lt;servlet&gt;`标签内的`&lt;servlet-class&gt;org.springframework.web.context.ContextLoaderServlet&lt;/servlet-class&gt;`则定义了一个Servlet,它同样用于初始化Spring容器。与`ContextLoaderListener`不同的是,...

    配置spring

    这通常通过`&lt;servlet&gt;`标签来完成,其中`servlet-class`是`org.springframework.web.context.ContextLoaderServlet`,并设置`load-on-startup`参数为1,确保在应用启动时加载Spring上下文。 ```xml ...

    spring在web.xml中和在struts中的不同配置.[收集].pdf

    &lt;servlet-class&gt;org.springframework.web.context.ContextLoaderServlet &lt;load-on-startup&gt;1 ``` `ContextLoaderServlet`是一个Servlet,它同样在Web应用启动时加载配置文件,但在Servlet容器初始化阶段稍后...

    ssh整合文档.txt

    &lt;servlet-class&gt;org.springframework.web.context.ContextLoaderServlet &lt;context-param&gt; &lt;param-name&gt;contextConfigLocation &lt;param-value&gt;/WEB-INF/classes/applicationContext.xml,/WEB-INF/classes/spring...

    spring3.x的读书笔记3

    &lt;servlet-class&gt;org.springframework.web.context.ContextLoaderServlet &lt;!-- 启动顺序 --&gt; &lt;load-on-startup&gt;1 ``` 这里`load-on-startup`元素用于指定Servlet的启动顺序,数值越小,启动优先级越高。 在...

    Spring中ApplicationContext加载机制

    org.springframework.web.context.ContextLoaderServlet &lt;load-on-startup&gt;1 ``` 通过以上配置,Web 容器会自动加载 /WEB-INF/applicationContext.xml 初始化 ApplicationContext 实例,如果需要指定配置文件...

    spring配置.txtspring配置.txt

    &lt;servlet-class&gt;org.springframework.web.context.ContextLoaderServlet &lt;load-on-startup&gt;0 ``` - **ContextLoaderListener**:当Web应用启动时,会加载一个或多个Spring配置文件,并创建一个...

    spring与struts的整合

    &lt;servlet-class&gt;org.springframework.web.context.ContextLoaderServlet &lt;load-on-startup&gt;1 ``` - **ContextLoaderServlet**:这是一个Servlet,用于加载Spring的ApplicationContext。当Web应用启动时,该...

    ssh(structs,spring,hibernate)框架中的上传下载

     需要指定的是Spring 1.2.5提供了两套Hibernate的支持包,其中Hibernate 2相关的封装类位于org.springframework.orm.hibernate2.*包中,而Hibernate 3.0的封装类位于org.springframework.orm.hibernate3.*包中,...

    j2ee SSH 整合笔记,献于新手。。

    &lt;servlet-class&gt;org.springframework.web.context.ContextLoaderServlet &lt;load-on-startup&gt;1 &lt;context-param&gt; &lt;param-name&gt;contextConfigLocation &lt;param-value&gt;/WEB-INF/applicationContext.xml &lt;/...

    java 三个框架集成的 文档

    &lt;servlet-class&gt;org.springframework.web.context.ContextLoaderServlet &lt;load-on-startup&gt;0 ``` - **Listener方式**:同样在`web.xml`中配置`ContextLoaderListener`。 ```xml &lt;listener-class&gt;org.spring...

    myeclipse6 整合struts spring hibernate

    &lt;servlet-class&gt;org.springframework.web.context.ContextLoaderServlet &lt;load-on-startup&gt;1 ``` 2. 配置完成后,`web.xml`应如下所示: ```xml &lt;web-app xmlns="http://java.sun.com/xml/ns/javaee" ...

    spring整合cxf 实现webservice

    &lt;servlet-class&gt;org.springframework.web.context.ContextLoaderServlet &lt;load-on-startup&gt;1 &lt;servlet-name&gt;CXFServlet &lt;servlet-class&gt;org.apache.cxf.transport.servlet.CXFServlet &lt;load-on-startup&gt;2 ...

    struts-spring整合.txt

    org.springframework.web.context.ContextLoaderServlet &lt;load-on-startup&gt;1 ``` 这里指定了`ContextLoaderServlet`的名字为"context",并在服务器启动时自动加载(通过`&lt;load-on-startup&gt;`标签设置为1)。 #...

    struts 整合spring 例子,测试通过

    &lt;servlet-class&gt;org.springframework.web.context.ContextLoaderServlet &lt;load-on-startup&gt;1 ``` 一旦Spring容器被启动,它会创建一个`WebApplicationContext`对象,并将其绑定到Servlet上下文(ServletContext...

    Struts+Spring+Ibatis整合框架搭建配置文档

    &lt;servlet-class&gt;org.springframework.web.context.ContextLoaderServlet &lt;load-on-startup&gt;1 ``` 2. 添加Struts框架:接着,配置Struts的`ActionServlet`,它是Struts的核心控制器,负责处理所有的请求。 ```...

    spring中的所有配置

    &lt;servlet-class&gt;org.springframework.web.context.ContextLoaderServlet &lt;load-on-startup&gt;1 ``` ### 总结 Spring框架的强大之处在于其高度的灵活性和可扩展性,无论是通过监听器还是Servlet,亦或是其他各种...

Global site tag (gtag.js) - Google Analytics