我遵循了一些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框架。
答案 0 :(得分:4)
没有充分的理由在servlet和root上下文中两次注入完全相同的配置。
具有多个上下文的想法如下:大多数Spring MVC应用程序具有一个包含所有服务层/ DAO层bean的根上下文,以及每个应用程序的Spring调度程序servlet的一个servlet上下文,其中包含(至少)控制器每个servlet。
这个想法是一个应用程序可能有几个servlet调度程序,例如一个用于URL / desktop / *,另一个用于URL / mobile / *,每个都有自己的一组不同的控制器。 / p>
一个servlet调度程序的控制器彼此隔离,这意味着虽然它们也是Spring bean,但它们不能互相注入。
根上下文中的服务层和DAO bean在所有servlet上下文中都是可见的,因此可以在任何控制器中注入服务层bean,但不能反过来。
根上下文被称为控制器servlet上下文/上下文的父。
它的意思是将bean组彼此隔离的机制,以确保不存在任何不可靠的依赖关系。
Spring框架的组件也需要根上下文,例如OpenSessionInViewFilter
。
TLDR :并不是说在两种情况下都不可能注入servlet-context.xml,但这并不意味着它的使用方式:在两个单独的上下文中将有两个每种类型的bean,一个可以应用事务而另一个不应用等等,它可以快速生成难以排除故障的错误
答案 1 :(得分:0)
在Spring中,ApplicationContext可以是分层的。如果在单个EAR中有多个Web应用程序,则EAR可以拥有自己的上下文,该上下文是各个Web应用程序上下文的父级。此外,在每个webapp中,您还可以拥有一个根上下文和单个子上下文。您可以在web.xml中定义此层次结构。父上下文可以通过上下文参数指定:locatorFactorySelector和parentContextKey。根上下文通过上下文参数contextConfigLocation(context-param中的一个)。子上下文可以在每个servlet定义的init param-param-name属性中指定。
在EAR中有一个jar保存所有公共服务和DAO层代码,并在beanRefContext.xml(基本上是另一个应用程序上下文xml)中定义它们。在classpath中使这个jar可用。
在每个应用程序的web.xml中,您要引用父上下文代码:
<!-- root application context -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:rootContextBeans.xml</param-value>
</context-param>
<!-- start shared service layer - parent application context -->
<context-param>
<param-name>locatorFactorySelector</param-name>
<param-value>classpath:beanRefContext.xml</param-value>
</context-param>
<context-param>
<param-name>parentContextKey</param-name>
<param-value>servicelayer-context</param-value>
</context-param>
<!-- end shared service layer - parent application context -->
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<servlet>
<servlet-name>dispatcherServletApp1</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:webApp1.xml</param-value>
</init-param>
</servlet> where beanRefContext.xml will be like:
<beans>
<bean id="servicelayer-context" class="org.springframework.context.support.ClassPathXmlApplicationContext">
<constructor-arg>
<list>
<value>data-layer-context.xml</value>
</list>
</constructor-arg>
</bean>
</beans>
如果您的项目没有多Web应用程序类型,则不需要指定父应用程序上下文。您可以将公共服务和DAO层代码,安全性移动到根应用程序上下文(在上面的web.xml到rootContextBeans.xml中),可以通过dispatcherServlet bean访问(可见)(请记住反向可见性)。
在您的web.xml中,您在根上下文contextConfigLocation和servlet contextConfigLocation中指定了servlet-context.xml。因此,您需要检查其中定义的bean及其确切位置,并在其他位置删除引用。
答案 2 :(得分:0)
&#39; WEB-INF / spring&#39;根目录下的所有Spring配置文件在Spring Spring上下文中加载。
此配置用于加载与根上下文相关的任何Web,在这种情况下,它只是Web安全性。
供参考:http://www.springbyexample.org/examples/contact-webapp-spring-config.html