web listener 配置的问题

阅读更多


一个关于web.xml中添加springListener"严重"的问题,

程序错误信息为:
2011-08-18 10:31:22 org.apache.catalina.core.StandardContext start
严重: Error listenerStart
2011-08-18 10:31:22 org.apache.catalina.core.StandardContext start
严重: Context [/Salvation] startup failed due to previous errors

web.xml部分配置如下:


contextConfigLocation
/WEB-INF/applicationContext.xml




org.springframework.web.context.ContextLoaderListener





这个在tomcat5.x中启动时候会有警告,项目无法访问.而在tomcat.6.x中,就没问题.

解决方法为:



org.springframework.web.context.ContextLoaderListener



改成:

SpringContextServlet

org.springframework.web.context.ContextLoaderServlet

1


你可能感兴趣的:(web,springlistener)