在SpringMVC的Controller中獲取spring上下文和springMVC上下文
阿新 • • 發佈:2019-01-03
1.web上下文、spring上下文、springMVC上下文之間的關係
本段轉載自:https://segmentfault.com/q/1010000000210417 要想很好理解這三個上下文的關係,需要先熟悉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.ROOTWEB
-
再次,contextLoaderListener監聽器初始化完畢後,開始初始化web.xml中配置的Servlet,這個servlet可以配置多個,以最常見的DispatcherServlet為例,這個servlet實際上是一個標準的前端控制器,用以轉發、匹配、處理每個servlet請求。DispatcherServlet上下文在初始化的時候會建立自己的IoC上下文,用以持有spring mvc相關的bean。在建立DispatcherServlet自己的IoC上下文時,會利用WebApplicationContext.ROOTWEB
即,springMVC上下文繼承自spring上下文,所以在spingMVC中可以直接使用spring中的bean.
2.在springMVC的controller中獲取spring上下文及springMVC上下文
//spring上下文WebApplicationContext springContext = WebApplicationContextUtils.getWebApplicationContext(request.getSession().getServletContext());
//springMVC上下文
WebApplicationContext springMVCContext = RequestContextUtils.getWebApplicationContext(request);