我正在尝试了解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</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>
</web-app>
还请考虑official docs中给出的下图:
疑问:
DispatcherServlet
和ContextLoaderListener
创建的实例的确切类型是什么?由于一些在线文章说ContextLoaderListener
创建ApplicationContext
实例,而DispatcherServlet
创建WebApplicationContext
实例,造成了混乱。但是,在查看了它们的来源之后,我觉得既创建了类型WebApplicationContext
的实例,又由于它是ApplicationContext
的子类型,因此有些文章说ContextLoaderListener
创建了ApplicationContext
实例。是否仅使用由ApplicationContext
创建的实例的ContextLoaderListener
提供的功能,是否也是如此,因此文章说ContextLoaderListener
创建ApplicationContext
,而不是WebApplicationContext
`
就像是
WebApplicaionContext
创建的ContextLoaderListener
是usually online articles refer to as“根” WebApplicationContext
一样,只是为了将其与WebApplicationContext
创建的DispatcherServlet
区别开来吗?阅读this article后,我了解到
DispatcherServlet
从[servlet-name]-servlet.xml
文件加载,该文件应加载“网络层组件”。另一方面,ContextLoaderListener
加载“中间层组件”。假设web.xml中只有一个ContextLoaderListener
(对吗?),则应该只有一个“中间层组件”的单一集合,而由于可以有多个DispatcherServlet
,因此可以有多个集合“ Web层组件”。这是正确的吗?如果是这样,那么为什么上图显示了多个中间层组件的WebApplicationContext
和单个Web层组件的WebApplicationContext
? 最佳答案
WebApplicationContext
和ApplicationContext
都是接口,因此当文档说“创建ApplicationContext
实例”时,表示它创建了实现ApplicationContext
的类的对象实例。该类是否也实现WebApplicationContext
才是重点。它可能。可能不会。不会使“创建ApplicationContext
实例”的语句无效。
通常在线文章称为“根”
不,这是ContextLoaderListener
本身的javadoc所指的根:
对根应用程序上下文执行实际的初始化工作。
为什么上图显示了多个中间层组件的WebApplicationContexts
和单个Web层组件的WebApplicationContext
?
它仅显示Web层组件的单个WebApplicationContext
,因为该图用于单个DispatcherServlet
。
仅仅因为ContextLoaderListener
仅创建一个根上下文,并不意味着不能通过其他方式创建多个上下文。该图准确地显示了可能的结果。