我正在尝试了解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中给出的下图:

java - 了解Spring MVC应用程序上下文-LMLPHP

疑问:


DispatcherServletContextLoaderListener创建的实例的确切类型是什么?由于一些在线文章说ContextLoaderListener创建ApplicationContext实例,而DispatcherServlet创建WebApplicationContext实例,造成了混乱。但是,在查看了它们的来源之后,我觉得既创建了类型WebApplicationContext的实例,又由于它是ApplicationContext的子类型,因此有些文章说ContextLoaderListener创建了ApplicationContext实例。是否仅使用由ApplicationContext创建的实例的ContextLoaderListener提供的功能,是否也是如此,因此文章说ContextLoaderListener创建ApplicationContext,而不是WebApplicationContext
`
就像是WebApplicaionContext创建的ContextLoaderListenerusually online articles refer to as“根” WebApplicationContext一样,只是为了将其与WebApplicationContext创建的DispatcherServlet区别开来吗?
阅读this article后,我了解到DispatcherServlet[servlet-name]-servlet.xml文件加载,该文件应加载“网络层组件”。另一方面,ContextLoaderListener加载“中间层组件”。假设web.xml中只有一个ContextLoaderListener(对吗?),则应该只有一个“中间层组件”的单一集合,而由于可以有多个DispatcherServlet,因此可以有多个集合“ Web层组件”。这是正确的吗?如果是这样,那么为什么上图显示了多个中间层组件的WebApplicationContext和单个Web层组件的WebApplicationContext

最佳答案

WebApplicationContextApplicationContext都是接口,因此当文档说“创建ApplicationContext实例”时,表示它创建了实现ApplicationContext的类的对象实例。该类是否也实现WebApplicationContext才是重点。它可能。可能不会。不会使“创建ApplicationContext实例”的语句无效。

  通常在线文章称为“根”


不,这是ContextLoaderListener本身的javadoc所指的根:


  对根应用程序上下文执行实际的初始化工作。


  为什么上图显示了多个中间层组件的WebApplicationContexts和单个Web层组件的WebApplicationContext


它仅显示Web层组件的单个WebApplicationContext,因为该图用于单个DispatcherServlet

仅仅因为ContextLoaderListener仅创建一个根上下文,并不意味着不能通过其他方式创建多个上下文。该图准确地显示了可能的结果。

10-02 09:52