1. 程式人生 > >springmvc-servlet.xml,applicationContext.xml 哪個先被載入

springmvc-servlet.xml,applicationContext.xml 哪個先被載入

                  springmvc-servlet.xml,applicationContext.xml 哪個先被載入

 

1、applicationContext.xml是隨ContextLoaderListener的載入而執行的,而xxx-servlet.xml是隨DispatcherServlet的載入而執行的,在web.xml中;

2、載入順序是listener>filter>servlet;

3、applicationContext.xml先載入!

 

先看web.xml配置

預設去找一個applicationContext.xml 的檔案

為什麼?

 

然後預設去找一個*-servlet.xml的檔案

為什麼?

 

 

 

Spring MVC 原理