web.xml檔案詳解
阿新 • • 發佈:2019-01-24
轉載地址:https://www.cnblogs.com/LiZhiW/p/4313844.html
一、web.xml檔案介紹
1.web.xml檔案的作用 web.xml主要用來配置Filter、Listener、Servlet等。但是要說明的是web.xml並不是必須的,一個web工程可以沒有web.xml檔案。 2.WEB容器的載入過程 WEB容器的載入順序是:ServletContext -> context-param -> listener -> filter -> servlet。在web.xml檔案中最好按照這種順序配置這些元素,以相容較低版本的Tomcat。二、web.xml配置元素
1.<web-app>根元素<web-appversion="3.0"xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
</web-app>
<icon>
<small-icon>/images/app_small.gif</small-icon>
<large-icon>/images/app_large.gif</large-icon>
</icon>
<display-name>Tomcat Example</display-name>
<disciption>Tomcat Example servlets and JSP pages.</disciption>
<context-param>
<param-name>ContextParameter</para-name>
<param-value>test</param-value>
<description>It is a test parameter.</description>
</context-param>
<filter>
<filter-name>setCharacterEncoding</filter-name>
<filter-class>com.myTest.setCharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>setCharacterEncoding</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<listener>
<listener-class>com.listener.SessionListener</listener-class>
</listener>
<servlet> 用來宣告一個servlet的資料,主要有以下子元素:
<servlet-name> 指定servlet的名稱
<servlet-class> 指定servlet的類名稱
<jsp-file> 指定web站臺中的某個JSP網頁的完整路徑
<init-param> 用來定義引數,可有多個init-param。
<load-on-startup> 當值為正數或零時,從小到大載入。否則第一次訪問時載入。
<servlet-mapping> 用來定義servlet所對應的URL,包含兩個子元素
<servlet-name> 指定servlet的名稱
<url-pattern> 指定servlet所對應的URL
<!-- 基本配置 -->
<servlet>
<servlet-name>snoop</servlet-name>
<servlet-class>SnoopServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>snoop</servlet-name>
<url-pattern>/snoop</url-pattern>
</servlet-mapping>
<!-- 高階配置 -->
<servlet>
<servlet-name>snoop</servlet-name>
<servlet-class>SnoopServlet</servlet-class>
<init-param>
<param-name>foo</param-name>
<param-value>bar</param-value>
</init-param>
<run-as>
<description>Security role for anonymous access</description>
<role-name>tomcat</role-name>
</run-as>
</servlet>
<servlet-mapping>
<servlet-name>snoop</servlet-name>
<url-pattern>/snoop</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>120</session-timeout><!-- 單位為分鐘 -->
</session-config>
<mime-mapping>
<extension>htm</extension>
<mime-type>text/html</mime-type>
</mime-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<!-- 1、通過錯誤碼來配置error-page。當系統發生×××錯誤時,跳轉到錯誤處理頁面。 -->
<error-page>
<error-code>404</error-code>
<location>/NotFound.jsp</location>
</error-page>
<!-- 2、通過異常的型別配置error-page。(即空指標異常)時,跳轉到錯誤處理頁面。 -->
<error-page>
<exception-type>java.lang.NullException</exception-type>
<location>/error.jsp</location>
</error-page>
<jsp-config> 包括 <taglib>和<jsp-property-group>兩個子元素。其中<taglib>元素在JSP1.2時就已經存在;而<jsp-property-group> 是JSP 2.0 新增的元素。
<jsp-property-group> 元素主要有八個子元素,它們分別為:
<description> 設定的說明
<display-name> 設定名稱
<url-pattern> 設定值所影響的範圍,如: /CH2 或 /*.jsp
<el-ignored> 若為 true,表示不支援 EL 語法
<scripting-invalid> 若為 true,表示不支援 <% scripting %>語法
<page-encoding> 設定 JSP 網頁的編碼
<include-prelude> 設定 JSP 網頁的擡頭,副檔名為 .jspf
<include-coda> 設定 JSP 網頁的結尾,副檔名為 .jspf
<jsp-config>
<taglib>
<taglib-uri>Taglib</taglib-uri>
<taglib-location>/WEB-INF/tlds/MyTaglib.tld</taglib-location>
</taglib>
<jsp-property-group>
<description>Special property group for JSP Configuration JSP example.</description>
<display-name>JSPConfiguration</display-name>
<url-pattern>/jsp/* </url-pattern>
<el-ignored>true</el-ignored>
<page-encoding>GB2312</page-encoding>
<scripting-invalid>true</scripting-invalid>
<include-prelude>/include/prelude.jspf</include-prelude>
<include-coda>/include/coda.jspf</include-coda>
</jsp-property-group>
</jsp-config>