1 Spring MVC WEB配置
Spring Framework本身沒有Web功能,Spring MVC使用WebApplicationContext類擴充套件ApplicationContext
,使得擁有web功能。那麼,Spring MVC是如何在web環境中建立IoC容器呢?web環境中的IoC容器的結構又是什麼結構呢?web環境中,Spring IoC容器是怎麼啟動呢?
以Tomcat為例,在Web容器中使用Spirng MVC,必須進行四項的配置:
- 修改web.xml,新增servlet定義;
- 編寫servletname-servlet.xml(servletname是在web.xm中配置DispactherServlet時使servlet-name的值)配置;
- contextConfigLocation初始化引數、配置ContextLoaderListerner;
Web.xml配置如下:
<!-- servlet定義:前端處理器,接受的HTTP請求和轉發請求的類 -->
<servlet>
<servlet-name>court</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<!-- court-servlet.xml:定義WebAppliactionContext上下文中的bean -->
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:court-servlet.xml</param-value>
</init-param>
<load-on-startup>0</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>court</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<!-- 配置contextConfigLocation初始化引數:指定Spring IoC容器需要讀取的定義了非web層的Bean(DAO/Service)的XML檔案路徑 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/court-service.xml</param-value>
</context-param>
<!-- 配置ContextLoaderListerner:Spring MVC在Web容器中的啟動類,負責Spring IoC容器在Web上下文中的初始化 -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
複製程式碼
在web.xml配置檔案中,有兩個主要的配置:ContextLoaderListener和DispatcherServlet
。同樣的關於spring配置檔案的相關配置也有兩部分:context-param和DispatcherServlet中的init-param
。那麼,這兩部分的配置有什麼區別呢?它們都擔任什麼樣的職責呢?
在Spring MVC中,Spring Context是以父子的繼承結構存在的
。Web環境中存在一個ROOT Context,這個Context是整個應用的根上下文,是其他context的雙親Context。同時Spring MVC也對應的持有一個獨立的Context,它是ROOT Context的子上下文。
對於這樣的Context結構在Spring MVC中是如何實現的呢?下面就先從ROOT Context入手,ROOT Context是在ContextLoaderListener中配置的,ContextLoaderListener讀取context-param中的contextConfigLocation指定的配置檔案,建立ROOT Context
。
Spring MVC啟動過程大致分為兩個過程:
- ContextLoaderListener初始化,例項化IoC容器,並將此容器例項註冊到ServletContext中;
- DispatcherServlet初始化;
2 Web容器中Spring根上下文的載入與初始化
Web容器呼叫contextInitialized方法初始化ContextLoaderListener,在此方法中,ContextLoaderListener通過呼叫繼承自ContextLoader的initWebApplicationContext方法例項化Spring Ioc容器。
- 先看一下WebApplicationContext是如何擴充套件ApplicationContext來新增對Web環境的支援的。WebApplicationContext介面定義如下:
public interface WebApplicationContext extends ApplicationContext {
//根上下文在ServletContext中的名稱
String ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE = WebApplicationContext.class.getName() + ".ROOT";
//取得web容器的ServletContext
ServletContext getServletContext();
}
複製程式碼
- 下面看一下ContextLoaderListener中建立context的原始碼:ContextLoader.java
public WebApplicationContext initWebApplicationContext(ServletContext servletContext) {
//PS : ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE=WebApplicationContext.class.getName() + ".ROOT" 根上下文的名稱
//PS : 預設情況下,配置檔案的位置和名稱是: DEFAULT_CONFIG_LOCATION = "/WEB-INF/applicationContext.xml"
//在整個web應用中,只能有一個根上下文
if (servletContext.getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE) != null) {
throw new IllegalStateException("Cannot initialize context because there is already a root application context present - " + "check whether you have multiple ContextLoader* definitions in your web.xml!");
}
Log logger = LogFactory.getLog(ContextLoader.class);
servletContext.log("Initializing Spring root WebApplicationContext");
if (logger.isInfoEnabled()) {
logger.info("Root WebApplicationContext: initialization started");
}
long startTime = System.currentTimeMillis();
try {
// Store context in local instance variable, to guarantee that
// it is available on ServletContext shutdown.
if (this.context == null) {
// 在這裡執行了建立WebApplicationContext的操作
this.context = createWebApplicationContext(servletContext);
}
if (this.context instanceof ConfigurableWebApplicationContext) {
ConfigurableWebApplicationContext cwac = (ConfigurableWebApplicationContext) this.context;
if (!cwac.isActive()) {
// The context has not yet been refreshed -> provide services such as
// setting the parent context, setting the application context id, etc
if (cwac.getParent() == null) {
// The context instance was injected without an explicit parent ->
// determine parent for root web application context, if any.
ApplicationContext parent = loadParentContext(servletContext);
cwac.setParent(parent);
}
configureAndRefreshWebApplicationContext(cwac, servletContext);
}
}
// PS: 將根上下文放置在servletContext中
servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, this.context);
ClassLoader ccl = Thread.currentThread().getContextClassLoader();
if (ccl == ContextLoader.class.getClassLoader()) {
currentContext = this.context;
} else if (ccl != null) {
currentContextPerThread.put(ccl, this.context);
}
if (logger.isDebugEnabled()) {
logger.debug("Published root WebApplicationContext as ServletContext attribute with name [" +
WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE + "]");
}
if (logger.isInfoEnabled()) {
long elapsedTime = System.currentTimeMillis() - startTime;
logger.info("Root WebApplicationContext: initialization completed in " + elapsedTime + " ms");
}
return this.context;
} catch (RuntimeException ex) {
logger.error("Context initialization failed", ex);
servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, ex);
throw ex;
} catch (Error err) {
logger.error("Context initialization failed", err);
servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, err);
throw err;
}
}
複製程式碼
- 再看一下WebApplicationContext物件是如何建立的:ContextLoader.java
protected WebApplicationContext createWebApplicationContext(ServletContext sc, ApplicationContext parent) {
//根據web.xml中的配置決定使用何種WebApplicationContext。預設情況下使用XmlWebApplicationContext
//web.xml中相關的配置context-param的名稱“contextClass”
Class<?> contextClass = determineContextClass(sc);
if (!ConfigurableWebApplicationContext.class.isAssignableFrom(contextClass)) {
throw new ApplicationContextException("Custom context class [" + contextClass.getName() + "] is not of type [" + ConfigurableWebApplicationContext.class.getName() + "]");
}
//例項化WebApplicationContext的實現類
ConfigurableWebApplicationContext wac = (ConfigurableWebApplicationContext) BeanUtils.instantiateClass(contextClass);
// Assign the best possible id value.
if (sc.getMajorVersion() == 2 && sc.getMinorVersion() < 5) {
// Servlet <= 2.4: resort to name specified in web.xml, if any.
String servletContextName = sc.getServletContextName();
if (servletContextName != null) {
wac.setId(ConfigurableWebApplicationContext.APPLICATION_CONTEXT_ID_PREFIX + servletContextName);
} else {
wac.setId(ConfigurableWebApplicationContext.APPLICATION_CONTEXT_ID_PREFIX);
}
} else {
// Servlet 2.5's getContextPath available!
wac.setId(ConfigurableWebApplicationContext.APPLICATION_CONTEXT_ID_PREFIX + sc.getContextPath());
}
wac.setParent(parent);
wac.setServletContext(sc);
//設定spring的配置檔案
wac.setConfigLocation(sc.getInitParameter(CONFIG_LOCATION_PARAM));
customizeContext(sc, wac);
//spring容器初始化
wac.refresh();
return wac;
}
複製程式碼
- ContextLoaderListener構建Root Context時序圖:
3 Spring MVC對應的上下文載入與初始化
Spring MVC中核心的類是DispatcherServlet
,在這個類中完成Spring context的載入與建立,並且能夠根據Spring Context的內容將請求分發給各個Controller類。DispatcherServlet繼承自HttpServlet
,關於Spring Context的配置檔案載入和建立是在 init()方法中進行的,主要的呼叫順序是init-->initServletBean-->initWebApplicationContext
。
- 先來看一下initWebApplicationContext的實現:FrameworkServlet.java
protected WebApplicationContext initWebApplicationContext() {
//先從web容器的ServletContext中查詢WebApplicationContext
WebApplicationContext wac = findWebApplicationContext();
if (wac == null) {
// No fixed context defined for this servlet - create a local one.
//從ServletContext中取得根上下文
WebApplicationContext parent = WebApplicationContextUtils.getWebApplicationContext(getServletContext());
//建立Spring MVC的上下文,並將根上下文作為起雙親上下文
wac = createWebApplicationContext(parent);
}
if (!this.refreshEventReceived) {
// Apparently not a ConfigurableApplicationContext with refresh support:
// triggering initial onRefresh manually here.
onRefresh(wac);
}
if (this.publishContext) {
// Publish the context as a servlet context attribute.
// 取得context在ServletContext中的名稱
String attrName = getServletContextAttributeName();
//將Spring MVC的Context放置到ServletContext中
getServletContext().setAttribute(attrName, wac);
if (this.logger.isDebugEnabled()) {
this.logger.debug("Published WebApplicationContext of servlet '" + getServletName() + "' as ServletContext attribute with name [" + attrName + "]");
}
}
return wac;
}
複製程式碼
通過initWebApplicationContext方法的呼叫,建立了DispatcherServlet對應的context,並將其放置到ServletContext中
,這樣就完成了在web容器中構建Spring IoC容器的過程。
- DispatcherServlet建立context時序圖:
- DispatcherServlet初始化的大體流程:
- 控制器DispatcherServlet的類圖及繼承關係:
4 Spring中DispacherServlet、WebApplicationContext、ServletContext的關係
要想很好理解這三個上下文的關係,需要先熟悉Spring是怎樣在web容器中啟動起來的。Spring的啟動過程其實就是其IOC容器的啟動過程,對於web程式,IOC容器啟動過程即是建立上下文的過程。
Spring的啟動過程:
-
首先,對於一個web應用,其部署在web容器中,
web容器提供其一個全域性的上下文環境,這個上下文就是ServletContext
,其為後面的spring IoC容器提供宿主環境; -
其次,
在web.xml中會提供有contextLoaderListener
。在web容器啟動時,會觸發容器初始化事件,此時contextLoaderListener會監聽到這個事件,其contextInitialized方法會被呼叫,在這個方法中,spring會初始化一個啟動上下文,這個上下文被稱為根上下文,即WebApplicationContext,這是一個介面類,確切的說,其實際的實現類是XmlWebApplicationContext。
這個就是spring的IoC容器,其對應的Bean定義的配置由web.xml中的context-param標籤指定。在這個IoC容器初始化完畢後,spring以WebApplicationContext.ROOTWEBAPPLICATIONCONTEXTATTRIBUTE
為屬性Key,將其儲存到ServletContext中,便於獲取; -
再次,contextLoaderListener監聽器初始化完畢後,開始初始化web.xml中配置的Servlet,這個servlet可以配置多個,以最常見的DispatcherServlet為例,這個servlet實際上是一個標準的前端控制器,用以轉發、匹配、處理每個servlet請求。
DispatcherServlet上下文在初始化的時候會建立自己的IoC上下文,用以持有spring mvc相關的bean
。在建立DispatcherServlet自己的IoC上下文時,會利用WebApplicationContext.ROOTWEBAPPLICATIONCONTEXTATTRIBUTE
先從ServletContext中獲取之前的根上下文(即WebApplicationContext)作為自己上下文的parent上下文。有了這個parent上下文之後,再初始化自己持有的上下文。這個DispatcherServlet初始化自己上下文的工作在其initStrategies方法中可以看到,大概的工作就是初始化處理器對映、檢視解析等。這個servlet自己持有的上下文預設實現類也是XmlWebApplicationContext。初始化完畢後,spring以與servlet的名字相關(此處不是簡單的以servlet名為Key,而是通過一些轉換,具體可自行檢視原始碼)的屬性為屬性Key,也將其存到ServletContext中,以便後續使用。這樣每個servlet就持有自己的上下文,即擁有自己獨立的bean空間,同時各個servlet共享相同的bean,即根上下文(第2步中初始化的上下文)定義的那些bean。
在Web容器(比如Tomcat)中配置Spring時,你可能已經司空見慣於web.xml檔案中的以下配置程式碼:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<servlet>
<servlet-name>mvc-dispatcher</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>mvc-dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping></span>
複製程式碼
以上配置 首先會在ContextLoaderListener中通過<context-param>中的applicationContext.xml建立一個ApplicationContext
,再將這個ApplicationContext塞到ServletContext裡面,通過ServletContext的setAttribute方法達到此目的,在ContextLoaderListener的原始碼中,我們可以看到這樣的程式碼:
servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, this.context);
複製程式碼
以上由ContextLoaderListener建立的ApplicationContext是共享於整個Web應用程式的,而你可能早已經知道,DispatcherServlet會維持一個自己的ApplicationContext,預設會讀取/WEB-INFO/<dispatcherServletName>-servlet.xml檔案
,而也可以重新配置:
<servlet>
<servlet-name>
customConfiguredDispacherServlet
</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<init-param>
<param-name>
contextConfigLocation
</param-name>
<param-value>
/WEB-INF/dispacherServletContext.xml
</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
複製程式碼
問題是:以上兩個ApplicationContext的關係是什麼,它們的作用作用範圍分別是什麼,它們的用途分別是什麼?
ContextLoaderListener中建立ApplicationContext主要用於整個Web應用程式需要共享的一些元件
,比如DAO,資料庫的ConnectionFactory等。而 由DispatcherServlet建立的ApplicationContext主要用於和該Servlet相關的一些元件
,比如Controller、ViewResovler等。
對於作用範圍而言,
在DispatcherServlet中可以引用由ContextLoaderListener所建立的ApplicationContext
,而反過來不行。
在Spring的具體實現上,這兩個ApplicationContext都是通過ServletContext的setAttribute方法放到ServletContext中的。但是,ContextLoaderListener會先於DispatcherServlet建立ApplicationContext,DispatcherServlet在建立ApplicationContext時會先找到由ContextLoaderListener所建立的ApplicationContext,再將後者的ApplicationContext作為引數傳給DispatcherServlet的ApplicationContext的setParent()方法
,在Spring原始碼中,你可以在FrameServlet.java中找到如下程式碼:
wac.setParent(parent);
複製程式碼
其中,wac即為由DisptcherServlet建立的ApplicationContext,而parent則為有ContextLoaderListener建立的ApplicationContext
。此後,框架又會呼叫ServletContext的setAttribute()方法將wac加入到ServletContext中。
當Spring在執行ApplicationContext的getBean時,如果在自己context中找不到對應的bean,則會在父ApplicationContext中去找
。這也解釋了為什麼我們可以在DispatcherServlet中獲取到由ContextLoaderListener對應的ApplicationContext中的bean。