gpt4 book ai didi

java - Spring WebApplicationContext继承bean?

转载 作者:行者123 更新时间:2023-11-30 06:55:29 25 4
gpt4 key购买 nike

在 Spring 引用手册中:

In the Web MVC framework, each DispatcherServlet has its own WebApplicationContext, which inherits all the beans already defined in the root WebApplicationContext.

什么是根应用程序上下文?它是如何初始化的? Dispatcher Servlet 的 Web 应用程序上下文如何继承它们的 ie 机制?

最佳答案

DispatcherServlet 创建的应用程序上下文继承了从使用 contextConfigLocation 上下文参数添加到 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 中的应用程序上下文继承于此。

关于java - Spring WebApplicationContext继承bean?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41922757/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com