Spring MVC啓動過程(1):ContextLoaderListener初始化

Spring MVC啓動過程


以Tomcat爲例,想在Web容器中使用Spirng MVC,必須進行四項的配置:
修改web.xml,添加servlet定義、編寫servletname-servlet.xml( servletname是在web.xm中配置DispactherServlet時使servlet-name的值配置contextConfigLocation初始化參數、配置ContextLoaderListerner。


<!-- servlet定義 -->
<servlet>
	<servlet-name>court</servlet-name>
	<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
	<load-on-startup>1</load-on-startup>
</servlet>
	
<servlet-mapping>
	<servlet-name>court</servlet-name>
	<url-pattern>/</url-pattern>
</servlet-mapping>

<!-- 配置contextConfigLocation初始化參數 -->
<context-param>
	<param-name>contextConfigLocation</param-name>
	<param-value>/WEB-INF/court-service.xml</param-value>
</context-param>

<!-- 配置ContextLoaderListerner -->
<listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener> 

DispatcherServlet:前端處理器,接受的HTTP請求和轉發請求的類。 前端

court-servlet.xml:定義WebAppliactionContext上下文中的bean。 web

contextConfigLocation:指定Spring IoC容器須要讀取的定義了非web層的Bean(DAO/Service)的XML文件路徑。 spring

ContextLoaderListener:Spring MVC在Web容器中的啓動類,負責Spring IoC容器在Web上下文中的初始化。 app

Spring MVC啓動過程大體分爲兩個過程:一、ContextLoaderListener初始化,實例化IoC容器,並將此容器實例註冊到ServletContext中。二、DispatcherServlet初始化。 url


ContextLoaderListener初始化


Web容器調用contextInitialized方法初始化ContextLoaderListener,在此方法中,ContextLoaderListener經過調用繼承自ContextLoader的initWebApplicationContext方法實例化Spring Ioc容器。
initWebApplicationContext方法進行的操做如圖1:

以上在實例化Spring IoC容器的過程當中,最主要的兩個方法是createWebApplicationContext和configureAndRefreshWebApplicationContext方法。

createWebApplicationContext方法用於返回XmlWebApplicationContext實例,即Web環境下的Spring IoC容器。

configureAndRefreshWebApplicationContext用於配置XmlWebApplicationContext,讀取web.xml中經過contextConfigLocation標籤指定的XML文件,實例化XML文件中配置的bean,並在上一步中實例化的容器中進行註冊。

完成以上兩步的操做後,Spring MVC會將XmlWebApplicationContext實例以屬性的方式註冊到ServletContext中,屬性的名稱由WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE指定,默認值爲:WebApplicationContext.class.getName() + ".ROOT"。此Spring 容器是ROOT上下文,供全部的Spring MVC Servlcet使用。
相關文章
相關標籤/搜索