<?xml version="1.0" encoding="UTF-8"?> <!--<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">--> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_0.xsd" version="3.1"> <!--部署到容器時的描述性名字--> <display-name>spring</display-name> <!--部署到容器時描述性文字--> <description>spring example</description> <!--該元素用來聲明應用範圍(整個WEB項目)內的上下文初始化參數--> <!-- Spring和mybatis的配置文件 --> <context-param> <!--這裏的param-name這個名字,是容器默認的,若是不指定那麼容器會去默認查找獲取WEB-INF下面的application.xml文件--> <!--配置了這個參數才能夠和web頁面相通--> <param-name>contextConfigLocation</param-name> <param-value>classpath:spring-mybatis.xml</param-value> </context-param> <!-- 編碼過濾器 --> <filter> <filter-name>encodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <async-supported>true</async-supported> <init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> </filter> <filter-mapping> <filter-name>encodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <!-- Spring監聽器 --> <!--實現的是ServletContextListener對象監聽器,也就是它可以監聽ServletContext對象的生命週期,實際上就是監聽 Web 應用的生命週期--> <!--項目啓動時執行contextInitialized方法,在spring中就是將bean裝進ioc容器;--> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <!-- 防止Spring內存溢出監聽器 --> <listener> <listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class> </listener> <!-- Spring MVC servlet --> <servlet> <servlet-name>spring</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <!--這裏的param-name這個名字,是容器默認的,若是不指定那麼容器會去默認查找獲取WEB-INF下面的spring-servlet.xml文件--> <!--這是spring的servlet,所以也是將bean裝進ioc容器--> <param-name>contextConfigLocation</param-name> <param-value>classpath:spring-mvc.xml</param-value> </init-param> <!--若是有多個servlet,這是啓動順序--> <load-on-startup>1</load-on-startup> <async-supported>true</async-supported> </servlet> <servlet-mapping> <servlet-name>spring</servlet-name> <!--以」/’開頭只能匹配到路徑映射如/login,和以」/*」結尾的能夠作路徑映射和擴展映射如*.htm--> <!--之前綴」*.」開頭的是用來作擴展映射的--> <!--「/」 是用來定義default servlet映射的--> <!--剩下的都是用來定義詳細映射的。好比: /aa/bb/cc.action--> <url-pattern>/</url-pattern> </servlet-mapping> <!--輸入ip或者域名+端口+項目訪問路徑,所發出的默認請求--> <welcome-file-list> <welcome-file>/index.jsp</welcome-file> </welcome-file-list> </web-app>
當你根據源碼點擊去的時候好比org.springframework.web.context.ContextLoaderListener,啓動調試,你會發現他的加載順序是context-param>listener>filter>servletjava