1. 程式人生 > >web.xml配置載入順序context-param 、listener、 filter、servlet

web.xml配置載入順序context-param 、listener、 filter、servlet

<?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_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>SpringMVC04</display-name>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
  <filter>
    <filter-name>CharacterEncodingFilter</filter-name>
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
    <init-param>
      <param-name>encoding</param-name>
      <param-value>UTF-8</param-value>
    </init-param>
  </filter>
  <filter-mapping>
    <filter-name>CharacterEncodingFilter</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>
  <servlet>
    <servlet-name>springDispatcherServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>classpath:springMVC.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>springDispatcherServlet</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>
  
  <!-- needed for ContextLoaderListener -->
	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>classpath:spring.xml</param-value>
	</context-param>

	<!-- Bootstraps the root web application context before servlet initialization -->
	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>
  
</web-app>
<context-param>  
    <param-name>contextConfigLocation</param-name>  
    <param-value>contextConfigLocationValue></param-value>  
</context-param>  

作用:該元素用來宣告應用範圍(整個WEB專案)內的上下文初始化引數。
param-name設定上下文的引數名稱。必須是唯一名稱
param-value 設定的引數名稱的值

初始化過程:

在啟動Web專案時,容器(比如Tomcat)會讀web.xml

配置檔案中的兩個節點<listener><contex-param>
接著容器會建立一個ServletContext(上下文),應用範圍內即整個WEB專案都能使用這個上下文。
接著容器會將讀取到<context-param>轉化為鍵值對,並交給ServletContext
容器建立<listener></listener>中的類例項,即建立監聽(備註:listener定義的類可以是自定義的類但必須需要繼承ServletContextListener)。
在監聽的類中會有一個contextInitialized(ServletContextEvent event)
初始化方法,在這個方法中可以通過event.getServletContext().getInitParameter("contextConfigLocation")來得到context-param設定的值。在這個類中還必須有一個contextDestroyed(ServletContextEvent event)銷燬方法.用於關閉應用前釋放資源,比如說資料庫連線的關閉。
得到這個context-param的值之後,你就可以做一些操作了.注意,這個時候你的WEB專案還沒有完全啟動完成.這個動作會比所有的Servlet都要早。
由上面的初始化過程可知容器對於web.xml的載入過程是context-param >> listener >> fileter >> servlet**
如何使用
頁面中${initParam.contextConfigLocation}
Servlet中
String paramValue=getServletContext().getInitParameter("contextConfigLocation")