我有Spring和Spring安全性的web項目。 我的web.xml:爲什麼Spring Context加載兩次?
<web-app 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_3_0.xsd"
version="3.0" >
<display-name>BillBoard
</display-name>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<listener>
<listener-class>org.springframework.security.web.session.HttpSessionEventPublisher</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:security-config.xml classpath:billboard-servlet.xml</param-value>
</context-param>
<servlet>
<servlet-name>billboard</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:security-config.xml classpath:billboard-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>billboard</servlet-name>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
<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>
</web-app>
在服務器日誌中我看到Spring上下文加載兩次(春豆初始化,數據庫createtion ...)。 DispatcherServlet首次執行此操作,並在第二次執行ContextLoaderListener時執行此操作。我該如何解決它?
在this教程我看到,如果contextParam出現,那麼servlet init-params不是必需的。但如果我刪除init params我有錯誤:「org.apache.catalina.LifecycleException:org.apache.catalina.LifecycleException:java.io.FileNotFoundException:無法打開ServletContext資源[/WEB-INF/billboard-servlet.xml] 」。 Dispather servlet在默認位置查找上下文配置。
如果我刪除contextLoaderListener,那麼我有異常「java.lang.IllegalStateException:沒有找到WebApplicationContext:沒有ContextLoaderListener註冊?」 – Balconsky 2012-07-10 08:20:11
如果你放棄'contextConfigLocation'? – 2012-07-10 08:20:50
我嘗試從DispatcherServlet中刪除上下文參數或init-param,但是這兩個選項都會引發錯誤。 – Balconsky 2012-07-10 08:33:35