gpt4 book ai didi

SpringMVC 应用程序上下文层次结构

转载 作者:行者123 更新时间:2023-12-04 05:16:25 25 4
gpt4 key购买 nike

web.xml 片段:

  <context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext-security.xml</param-value>
</context-param>

<!-- 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>

根据 this answer :

2- The DispatcherServlet context becomes a child of the root context. ...



我的问题是了解 Spring 如何做出此决定(将 DispatcherServlet 上下文附加到根上下文)。 appContext XML 文件中没有任何明确的内容来指定这一点,并且 AFAICT 没有任何内容可以在 XML 中指定来明确地建立这种关联。

DispatcherServlet在实例化它的appContext时,它怎么知道调用 setParent()在它上面(SpringMVC 在没有根 appContext 的情况下工作得很好),如果已经存在多个非子 appContext,它会如何选择?

最佳答案

DispatcherServlet 扩展了 FrameworkServlet,它具有以下代码:

    protected WebApplicationContext initWebApplicationContext() {
WebApplicationContext rootContext =
WebApplicationContextUtils.getWebApplicationContext(getServletContext());
WebApplicationContext wac = null;

随后用作:
 wac = createWebApplicationContext(rootContext);

WebApplicationContextUtils 检索上下文为:
public static WebApplicationContext getWebApplicationContext(ServletContext sc) {
return getWebApplicationContext(sc, WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE);
}

public static WebApplicationContext getWebApplicationContext(ServletContext sc, String attrName) {
Assert.notNull(sc, "ServletContext must not be null");
Object attr = sc.getAttribute(attrName);
...
return (WebApplicationContext) attr;
}

简而言之:根上下文将对自身的引用存储在上下文属性中。所有 FrameworkServlet 都将尝试检索所述上下文属性并将自己绑定(bind)到检索到的根上下文(如果已定义)。

关于SpringMVC 应用程序上下文层次结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14208286/

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