【发布时间】:2014-05-24 14:41:33
【问题描述】:
我遵循了一些 spring mvc 教程,我的 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">
<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/root-context.xml, /WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</context-param>
<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- Processes application requests -->
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</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>
<session-config>
<session-timeout>1</session-timeout>
</session-config>
</web-app>
我的问题是,在根上下文和 servlet 上下文中加载 servlet-context.xml 有什么好处?我是spring框架新手,对spring框架不是很了解。
【问题讨论】:
-
为了更好地理解根和应用程序上下文的区别,请参阅我在stackoverflow.com/questions/19619539/…的回复
-
另外,this。除了模块分离之外没有其他真正的好处。
-
@SotiriosDelimanolis:如果我从根上下文中删除它会发生什么?我的应用程序的工作方式会有任何变化吗?
-
@riship89 很少有东西可能会损坏。
BeanFactoryPostProcessors 和BeanPostProcessors 仅适用于定义它们的上下文。
标签: xml spring spring-mvc web-applications