<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    樂在其中

    以JEE為主攻,以Flex為點(diǎn)綴,以Eclipse RCP為樂趣
    請(qǐng)?jiān)L問http://www.inframesh.org

    首頁 新隨筆 聯(lián)系 管理
      43 Posts :: 0 Stories :: 8 Comments :: 0 Trackbacks

    每一個(gè)站的WEB-INF下都有一個(gè)web.xml的設(shè)定文件,它提供了我們站臺(tái)的配置設(shè)定.

    web.xml定義:
    .站臺(tái)的名稱和說明
    .針對(duì)環(huán)境參數(shù)(Context)做初始化工作
    .Servlet的名稱和映射
    .Session的設(shè)定
    .Tag library的對(duì)映
    .JSP網(wǎng)頁設(shè)定
    .Mime Type處理
    .錯(cuò)誤處理
    .利用JDNI取得站臺(tái)資源

    要了解web.xml的設(shè)定值,必須了解它的schema,從web.xml中知道它的schema是由Sum Microsystems公司定制的,如果你想更為詳細(xì)的了解它,
    可以到http://java.sun.com/xml/ns/j2ee/web-mapp_2_4.xsd網(wǎng)頁,那里有更為詳細(xì)的介紹。這里我介紹我們平常見得最多的.

       1: <?xml version="1.0" encoding="ISO-8859-1"?> 
       2:  
       3: <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
       4:     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       5:     xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
       6:     version="2.4">
       7: <web-app>


    這是一般在寫XML時(shí)所做的聲明,定義了XML的版本,編碼格式,還有重要的指明schema的來源,為http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd.

    <description>,<display-name>,<icon>
    ____________________________________________

    <description>站臺(tái)描述</discription>
    對(duì)站臺(tái)做出描述.

    <display-name>站臺(tái)名稱</display-name>
    定義站臺(tái)的名稱.

    <icon>
    icon元素包含small-icon和large-icon兩個(gè)子元素.用來指定web站臺(tái)中小圖標(biāo)和大圖標(biāo)的路徑.
    <small-icon>/路徑/smallicon.gif</small-icon>
    small-icon元素應(yīng)指向web站臺(tái)中某個(gè)小圖標(biāo)的路徑,大小為16 X 16 pixel,但是圖象文件必須為GIF或JPEG格式,擴(kuò)展名必須為:.gif或.jpg.

    <large-icon>/路徑/largeicon-jpg</large-icon>
    large-icon元素應(yīng)指向web站臺(tái)中某個(gè)大圖表路徑,大小為32 X 32 pixel,但是圖象文件必須為GIF或JPEG的格式,擴(kuò)展名必須為; gif
    或jpg.
    范例:

       1: <display-name>Develop Example</display-name>
       2: <description>JSP 2.0 Tech Book's Examples</description>
       3: <icon>
       4:    <small-icon>/images/small.gif</small-icon>
       5:    <large-icon>/images/large.gir</large-icon>
       6: </icon> 
       7:  
       8: <distributable>

     

     

     

     

    <distributable>
    ______________________________________
    distributable 元素為空標(biāo)簽,它的存在與否可以指定站臺(tái)是否可分布式處理.如果web.xml中出現(xiàn)這個(gè)元素,則代表站臺(tái)在開發(fā)時(shí)已經(jīng)
    被設(shè)計(jì)為能在多個(gè)JSP Container 之間分散執(zhí)行.
    范例:

       1: <distributable/> 

     

     

     

    <context-param>
    ___________________________________

    <context-param>
    context-param 元素用來設(shè)定web站點(diǎn)的環(huán)境參數(shù)(context),它包含兩個(gè)子元素:
    param-name和param-value.
    <param-name>參數(shù)名稱</param-name>
    設(shè)定Context名稱
    <param-value>值</param-value>
    設(shè)定Context名稱的值
    </context-param>
    范例:

       1: <context-param>
       2:    <param-name>param_name</param-name>
       3:    <param-value>param_value</param-value>
       4: </context-param>


    此所設(shè)定的參數(shù),在JSP網(wǎng)頁中可以使用下列方法來取得:

       1: ${initParam.param_name}


    若在Servlet可以使用下列方法來獲得:

       1: String param_name=getServletContext().getInitParamter("param_name"); 

    又如Spring framework在這里可以設(shè)置context參數(shù)

       1: <!-- spring的配置 -->
       2: <context-param>
       3:     <param-name>contextConfigLocation</param-name>
       4:     <param-value>classpath:/SpringContext/applicationContext-web.xml
       5:     </param-value>
       6: </context-param>

     

     

     

     

    <filter>
    _________________________________
    filter元素用來聲明filter的相關(guān)設(shè)定.filter元素除了下面介紹的的子元素之外,還包括<servlet>介紹過的<icon>,<display-name>
    ,<description>,<init-param>,其用途一樣.
    <filter-name>Filter的名稱</filter-name>
    定義Filter的名稱.
    <filter-class>Filter的類名稱</filter-class>
    定義Filter的類名稱.例如:com.foo.hello

    范例:

       1: <filter>
       2:   <filter-name>setCharacterEncoding</filter-name>
       3:   <filter-class>coreservlet.javaworld.CH11.SetCharacterEncodingFilter</filter-class>
       4:   <init-param>
       5:      <param-name>encoding</param-name>
       6:      <param-value>GB2312</param-value>
       7:   </init-param>
       8: </filter> 
       9:  
      10: <filter-mapping>

    又如Struts2可以在這里設(shè)filter

       1: <filter>
       2:     <filter-name>struts2</filter-name>
       3:     <filter-class>org.apache.struts2.dispatcher.FilterDispatcher
       4:     </filter-class>
       5:     <init-param>
       6:         <param-name>config</param-name>
       7:         <param-value>struts-default.xml,struts-plugin.xml,struts/struts.xml</param-value>
       8:     </init-param>
       9: </filter>
      10:  
      11: <filter-mapping>
      12:     <filter-name>struts2</filter-name>
      13:     <url-pattern>*.do</url-pattern>
      14: </filter-mapping>

     


     

    <filter-mapping>

    ______________________________________

    filter-mapping 元素的兩個(gè)主要子元素filter-name和url-pattern.用來定義Filter所對(duì)應(yīng)的URL.
    <filter-name>Filter的名稱</filter-name>
    定義Filter的名稱.
    <url-pattern>URL</url-pattern>
    Filter所對(duì)應(yīng)的RUL.例如:<url-pattern>/Filter/Hello</url-pattern>

    <servlet-name>Servlet的名稱<servlet-name>
    定義servlet的名稱.
    <dispatcher>REQUEST|INCLUDE|FORWARD|ERROR</disaptcher>
    設(shè)定Filter對(duì)應(yīng)的請(qǐng)求方式,有RQUEST,INCLUDE,FORWAR,ERROR四種,默認(rèn)為REQUEST.
    </filter-mapping>
    范例:

       1: <filter-mapping>
       2:    <filter-name>GZIPEncoding</filter-name>
       3:    <url-pattern>/*</url-pattern>
       4: </filter-mapping> 

     

     

     

    <servlet>

    ___________________________________________

    <servlet-name>servlet的名稱</servlet-name>

    <display-name>顯示名稱</display-name>
    <servlet-class>servlet對(duì)應(yīng)的class名</servlet-class>

    范例:

       1: <servlet>
       2:     <servlet-name>org.apache.jsp.index_jsp</servlet-name>
       3:     <servlet-class>org.apache.jsp.index_jsp</servlet-class>
       4: </servlet>

     

     

     

    <servlet-mapping>
    _____________________________________________
    servlet-mapping元素包含兩個(gè)子元素servlet-name和url-pattern.用來定義servlet所對(duì)應(yīng)URL.
    <servlet-name>Servlet的名稱</servlet-name>
    定義Servlet的名稱.
    <url-pattern>Servlet URL</url-pattern>
    定義Servlet所對(duì)應(yīng)的RUL.例如:<url-pattern>/Servlet/Hello</url-pattern>
    </servlet-mapping>
    范例:

       1: <servlet-mapping>
       2:    <servlet-name>LoginChecker</servlet-name>
       3:    <url-pattern>/LoginChecker</url-pattern>
       4: </servlet-mapping> 

     

     

     

    <listener>
    ___________________________________________
    <listener>
    listener元素用來定義Listener接口,它的主要子元素為<listener-class>
    <listen-class>Listener的類名稱</listener-class>
    定義Listener的類名稱.例如: com.foo.hello
    <listener>
    范例:

       1: <listener>
       2:   <listener-class>coreservlet.javaworld.CH11.ContenxtListener</listener-class>
       3: </listener> 

    又如Spring framework可以在這里設(shè)listener

       1: <listener>
       2:     <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
       3: </listener>

     

     

     

    <session-cofing>
    __________________________________
    <session-config>
    session-config包含一個(gè)子元素session-timeout.定義web站臺(tái)中的session參數(shù).
    <session-timeout>分鐘</session-timeout>
    定義這個(gè)web站臺(tái)所有session的有效期限.單位為分鐘.
    </session-config>
    范例:

       1: <session-config>
       2:    <session-timeout>20</session-timeout>
       3: </session-config> 


     

     

     

    <mime-mapping>
    ___________________________________________________
    <mima-mapping>
    mime-mapping包含兩個(gè)子元素extension和mime-type.定義某一個(gè)擴(kuò)展名和某一MIME Type做對(duì)映.
    <extension>擴(kuò)展名名稱</extension>
    擴(kuò)展名稱
    <mime-type>MIME格式</mime-type>
    MIME格式.
    </mime-mapping>
    范例:

       1: <mime-mapping>
       2:    <extension>doc</extension>
       3:    <mime-type>application/vnd.ms-word</mime-type>
       4: </mime-mapping>
       5: <mime-mapping>
       6:    <extension>xls</extension>
       7:    <mime-type>application/vnd.ms-excel</mime-type>
       8: </mime-mapping>
       9: <mime-mapping>
      10:    <extension>ppt</extesnion>
      11:    <mime-type>application/vnd.ms-powerpoint</mime-type>
      12: </mime-mapping> 

     

     

     

    <welcome-file-list>
    _____________________________________________
    <welcome-file-list>
    welcome-file-list包含一個(gè)子元素welcome-file.用來定義首頁列單.
    <welcome-file>用來指定首頁文件名稱</welcome-flie>
    welcome-file用來指定首頁文件名稱.我們可以用<welcome-file>指定幾個(gè)首頁,而服務(wù)器會(huì)依照設(shè)定的順序來找首頁.
    范例:

       1: <welcome-file-list>
       2:   <welcome-file>index.jsp</welcome-file>
       3:   <welcome-file>index.htm</welcome-file>
       4: </welcome-file-list> 

     

     

     

    <error-page>
    _________________________
    <error-page>
    error-page元素包含三個(gè)子元素error-code,exception-type和location.將錯(cuò)誤代碼(Error Code)或異常(Exception)的種類對(duì)應(yīng)
    到web站臺(tái)資源路徑.
    <error-code>錯(cuò)誤代碼</error-code>
    HTTP Error code,例如: 404
    <exception-type>Exception</exception-type>
    一個(gè)完整名稱的Java異常類型
    <location>/路徑</location>
    在web站臺(tái)內(nèi)的相關(guān)資源路徑
    </error-page>
    范例:

       1: <error-page>
       2:    <error-code>404</error-code>
       3:    <location>/error404.jsp</location>
       4: </error-page>
       5: <error-page>
       6:    <exception-type>java.lang.Exception</exception-type>
       7:    <location>/except.jsp</location>
       8: </error-page> 

     

     

     

    <jsp-config>
    _______________________________________________
    <jsp-config>
    jsp-config元素主要用來設(shè)定JSP的相關(guān)配置,<jsp:config>包括<taglib>和<jsp-property-group>兩個(gè)子元素.其中<taglib>元素
    在JSP 1.2時(shí)就已經(jīng)存在了;而<jsp-property-group>是JSP 2.0新增的元素.

    <taglib>
    taglib元素包含兩個(gè)子元素taglib-uri和taglib-location.用來設(shè)定JSP網(wǎng)頁用到的Tag Library路徑.
    <taglib-uri>URI</taglib-uri>
       taglib-uri定義TLD文件的URI,JSP網(wǎng)頁的taglib指令可以經(jīng)由這個(gè)URI存取到TLD文件.
    <taglib-location>/WEB-INF/lib/xxx.tld</taglib-laction>
       TLD文件對(duì)應(yīng)Web站臺(tái)的存放位置.
    </taglib>

    <jsp-property-group>
    jsp-property-group元素包含8個(gè)元素,分別為:
    <description>Description</descrition>
    此設(shè)定的說明

    <display-name>Name</display-name>
    此設(shè)定的名稱

    <url-pattern>URL</url-pattern>
    設(shè)定值所影響的范圍,如:/CH2 或者/*.jsp

    <el-ignored>true|false</el-ignored>
    若為true,表示不支持EL語法.

    <scripting-invalid>true|false</scripting-invalid>
    若為true表示不支持<%scription%>語法.

    <page-encoding>encoding</page-encoding>
    設(shè)定JSP網(wǎng)頁的編碼

    <include-prelude>.jspf</include-prelude>
    設(shè)置JSP網(wǎng)頁的抬頭,擴(kuò)展名為.jspf

    <include-coda>.jspf</include-coda>
    設(shè)置JSP網(wǎng)頁的結(jié)尾,擴(kuò)展名為.jspf
    </jsp-property-group>
    </jsp-config>
    范例:

       1: <jsp-config>
       2: <taglib>
       3:    <taglib-uri>Taglib</taglib-uri>
       4:    <taglib-location>/WEB-INF/tlds/MyTaglib.tld</taglib-location>
       5: </taglib>
       6: <jsp-property-group>
       7:    <description>
       8:       Special property group for JSP Configuration JSP example.
       9:    </description>
      10:    <display-name>JSPConfiguration</display-name>
      11:    <uri-pattern>/*</uri-pattern>
      12:    <el-ignored>true</el-ignored>
      13:    <page-encoding>GB2312</page-encoding>
      14:    <scripting-inivalid>true</scripting-inivalid>
      15:    ............
      16: </jsp-property-group>
      17: </jsp-config> 

     

     

     

    <resource-ref>
    ________________________________________________
    <resource-ref>
    resource-ref元素包括五個(gè)子元素description,res-ref-name,res-type,res-auth,res-sharing-scope.利用JNDI取得站點(diǎn)可
    利用資源.
    <description>說明</description>
    資源說明

    <rec-ref-name>資源名稱</rec-ref-name>
    資源名稱

    <res-type>資源種類</res-type>
    資源種類

    <res-auth>Application|Container</res-auth>
    資源由Application或Container來許可

    <res-sharing-scope>Shareable|Unshareable</res-sharing-scope>
    資源是否可以共享.默認(rèn)值為 Shareable
    范例:

       1: <resource-ref>
       2:    <description>JNDI JDBC DataSource of JSPBook</description>
       3:    <res-ref-name>jdbc/sample_db</res-ref-name>
       4:    <res-type>javax.sql.DataSoruce</res-type>
       5:    <res-auth>Container</res-auth>
       6: </resource-ref> 

    這些都是些比較常用的,詳細(xì)可以登錄: http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd

    posted on 2008-12-26 11:34 suprasoft Inc,. 閱讀(1412) 評(píng)論(1)  編輯  收藏 所屬分類: J2EE

    Feedback

    # re: web.xml詳解 2014-09-25 15:51 Tiffany
    挺好的。借用了~~~  回復(fù)  更多評(píng)論
      

    ©2005-2008 Suprasoft Inc., All right reserved.
    主站蜘蛛池模板: 9i9精品国产免费久久| 亚洲成a人片在线观看日本| 永久免费在线观看视频| 亚洲中文字幕无码久久精品1| 国产成人无码区免费网站| 亚洲精品国产suv一区88| 亚洲综合男人的天堂色婷婷| 亚洲欧洲日产国码无码久久99 | 国内外成人免费视频| 久香草视频在线观看免费| 亚洲欧美不卡高清在线| 亚洲精品美女久久久久| 黑人粗长大战亚洲女2021国产精品成人免费视频 | 日韩亚洲精品福利| 久草免费福利资源站| 九九热久久免费视频| 猫咪免费观看人成网站在线| 亚洲欧美日韩久久精品| 亚洲伊人色一综合网| 亚洲精品岛国片在线观看| 日韩成全视频观看免费观看高清| 国产免费阿v精品视频网址| 国产精品无码永久免费888| 亚洲六月丁香六月婷婷色伊人| 午夜亚洲av永久无码精品| 精品国产免费观看一区| 成人免费a级毛片无码网站入口| 一个人晚上在线观看的免费视频| 久久久亚洲欧洲日产国码是AV| 国产小视频在线免费| 国产公开免费人成视频| 国产在线播放免费| 吃奶摸下高潮60分钟免费视频| 久久精品免费一区二区| 最近中文字幕完整免费视频ww| 国产亚洲福利精品一区二区| 亚洲天堂中文字幕| 亚洲视频在线观看| 国产精品亚洲精品青青青| 亚洲欧美精品午睡沙发| 国产精品亚洲专区无码唯爱网|