在Spring参考手册中:
在Web MVC框架中,每个DispatcherServlet都有自己的WebApplicationContext,它继承了所有的bean 在根WebApplicationContext中定义。
什么是根应用程序上下文?它是如何初始化的?调度程序servlet的Web应用程序上下文如何继承它们即机制?
答案 0 :(得分:1)
DispatcherServlet创建的应用程序上下文继承了使用contextConfigLocation context-param从添加到web.xml文件的配置文件创建的应用程序上下文:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath:config1.spring.xml,
classpath:config2.spring.xml,
WEB-INF/config3.spring.xml,
</param-value>
</context-param>
从上面的配置中,创建了一个应用程序上下文,其中包含config1,config2和config3上指定的所有bean(例如,包括任何注释扫描)。 DispatcherServlet的应用程序上下文继承自这个。