大家好,我正在使用 Spring 3.2.3、hibernate 4.2.2 和 org.springframework.security 3.0.5。在春季开始使用安全性之前,我的上下文文件名为 servlet-context.xml,一切正常。由于我在尝试运行应用程序时开始使用 org.springframework.security 3.0.5,因此出现错误:
java.io.FileNotFoundException: Could not open ServletContext resource [/WEB-INF/appServlet-servlet.xml]
我的 web.xml 是:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<!-- Spring MVC -->
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/servlet-context.xml,
/WEB-INF/spring-security.xml
</param-value>
</context-param>
<!-- Spring Security -->
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>
org.springframework.web.filter.DelegatingFilterProxy
</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
请注意,我正在指定我的 servlet-context.xml:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/servlet-context.xml,
/WEB-INF/spring-security.xml
</param-value>
</context-param>
如果我像这样离开我的 web.xml 并将我的 servlet-context.xml 内容复制/粘贴到一个名为 appServlet-servlet.xml 的新文件中,一切正常。这让我很困惑,因为我告诉 web.xml 我的上下文文件名为 servlet-context.xml。我是否被迫将我的上下文文件称为 appServlet-servlet.xml??。当然,如果我删除 servlet-context.xml 并保留 appServlet-servlet.xml 在 web.xml 中进行规范,则可以正常工作。
如果我想在我的应用程序中使用 Spring Security,我只想知道是否必须将我的上下文文件称为 appServlet-servlet.xml。