如何将org.springframework.web.filter.DelegatingFilterProxy挂钩到Web应用程序中

时间:2015-11-05 17:54:27

标签: spring tomcat8

环境:Springframe 4.1.16-RELEASE,tomcat 8.03,Java1.8.0_65

这是(FULL)web.xml



<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns="http://java.sun.com/xml/ns/javaee"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
	id="WebApp_ID" version="3.0">
	<display-name>mdm-project-web</display-name>

	<welcome-file-list>
		<welcome-file>index.html</welcome-file>
		<welcome-file>index.jsp</welcome-file>
	</welcome-file-list>
</web-app>
&#13;
&#13;
&#13;

从WEB-INF / lib中删除所有.jar文件,我可以访问servlet上下文根文件夹中的welcome.html。 添加回.jar文件,而不更改web.xml(顺便说一下,我只有一个应用程序部署到tomcat服务器),访问welcome.html时出现以下错误:

java.lang.IllegalStateException:找不到WebApplicationContext:没有注册ContextLoaderListener?     org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:252)

spring.xml没有挂在web.xml中,我通过删除temp和work目录来启动服务器。为什么Tomcat会随机决定从lib文件夹中的.jar文件中选择DelegatingFilterProxy?

0 个答案:

没有答案