2013-01-08 69 views
2

的web.xml片段:ApplicationContext的用SpringMVC層次

<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- DispatcherServlet的上下文成爲根上下文的子級。 ...

我的問題是瞭解Spring如何做出這個決定(將DispatcherServlet上下文附加到根上下文)。在任何一個appContext XML文件中都沒有明確指出這一點,而AFAICT在XML中沒有任何可以指定的地方明確地進行這種關聯。

當DispatcherServlet應用實例其appContext,它是如何知道調用它的setParent()(用SpringMVC工作得很好,沒有根appContext),如果有存在一個以上的非獨生子女appContext已經它會如何選擇?

回答

2

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; 
} 

簡而言之:根上下文在上下文a中存儲對自身的引用ttribute。所有的FrameworkServlet都會嘗試檢索上下文屬性並將它們自己綁定到檢索到的根上下文(如果已定義)。

+0

謝謝,這正是我需要的。 –

1

ApplicationContext的用SpringMVC層次 -

的ApplicationContext(I)
        -ConfigurableApplicationContext(I)
        -WebApplicationContext(I)