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

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

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

    posts - 0,  comments - 0,  trackbacks - 0


    ?

    web.xml 定義:

    站臺的名稱和說明

    針對環(huán)境參數(shù)(Context)做初始化工作

    Servlet 的名稱和映射

    Session 的設(shè)定

    Taglibrary 的對映

    JSP 網(wǎng)頁設(shè)定

    MimeType 處理

    錯誤處理

    利用JDNI取得站臺資源

    ?

    要了解web.xml的設(shè)定值,必須了解它的schema,web.xml中知道它的schema是由SumMicrosystems公司定制的,如果你想更為詳細(xì)的了解它,

    可以到http://java.sun.com/xml/ns/j2ee/web-mapp_2_4.xsd網(wǎng)頁,那里有更為詳細(xì)的介紹。

    ?

    這里我介紹我們平常見得最都的.

    ?

    <?xmlversion="1.0"encoding="ISO-8859-1"?>

    <web-appxmlns="http://java.sun.com/xml/ns/j2ee"

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"

    version="2.4">

    <web-app>

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

    /web-app_2_4.xsd.

    ?

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

    ____________________________________________

    ?

    <description> 站臺描述</discription>

    對站臺做出描述.

    ?

    <display-name> 站臺名稱</display-name>

    定義站臺的名稱.

    ?

    <icon>

    icon 元素包含small-iconlarge-icon兩個子元素.用來指定web站臺中小圖標(biāo)和大圖標(biāo)的路徑.

    <small-icon>/ 路徑/smallicon.gif</small-icon>

    small-icon 元素應(yīng)指向web站臺中某個小圖標(biāo)的路徑,大小為16X16pixel,但是圖象文件必須為GIFJPEG格式,擴(kuò)展名必須為:.gif

    .jpg.

    ?

    <large-icon>/ 路徑/largeicon-jpg</large-icon>

    large-icon 元素應(yīng)指向web站臺中某個大圖表路徑,大小為32X32pixel,但是圖象文件必須為GIFJPEG的格式,擴(kuò)展名必須為;gif

    jpg.

    范例:

    <display-name>DevelopExample</display-name>

    <description>JSP2.0TechBook'sExamples</description>

    <icon>

    <small-icon>/images/small.gif</small-icon>

    <large-icon>/images/large.gir</large-icon>

    </icon>

    ?

    <distributable>

    ______________________________________

    <distributable>

    distributable 元素為空標(biāo)簽,它的存在與否可以指定站臺是否可分布式處理.如果web.xml中出現(xiàn)這個元素,則代表站臺在開發(fā)時已經(jīng)

    被設(shè)計(jì)為能在多個JSPContainer之間分散執(zhí)行.

    范例:

    <distributable/>

    ?

    <context-param>

    ___________________________________

    <context-param>

    context-param 元素用來設(shè)定web站臺的環(huán)境參數(shù)(context),它包含兩個子元素:

    param-name param-value.

    <param-name> 參數(shù)名稱</param-name>

    設(shè)定Context名稱

    <param-value> </param-value>

    設(shè)定Context名稱的值

    </context-param>

    范例:

    <context-param>

    <param-name>param_name</param-name>

    <param-value>param_value</param-value>

    </context-param>

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

    ${initParam.param_name}

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

    Stringparam_name=getServletContext().getInitParamter("param_name");

    ?

    <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

    </filter>

    范例:

    <filter>

    <filter-name>setCharacterEncoding</filter-name>

    <filter-class>coreservlet.javaworld.CH11.SetCharacterEncodingFilter</filter-class>

    <init-param>

    <param-name>encoding</param-name>

    <param-value>GB2312</param-value>

    </init-param>

    </filter>

    ?

    <filter-mapping>

    ______________________________________

    <filter-mapping>

    filter-mapping 元素的兩個主要子元素filter-nameurl-pattern.用來定義Filter所對應(yīng)的URL.

    <filter-name>Filter 的名稱</filter-name>

    定義Filter的名稱.

    <url-pattern>URL</url-pattern>

    Filter 所對應(yīng)的RUL.

    例如:<url-pattern>/Filter/Hello</url-pattern>

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

    定義servlet的名稱.

    <dispatcher>REQUEST|INCLUDE|FORWARD|ERROR</disaptcher>

    設(shè)定Filter對應(yīng)的請求方式,RQUEST,INCLUDE,FORWAR,ERROR四種,默認(rèn)為REQUEST.

    </filter-mapping>

    范例:

    <filter-mapping>

    <filter-name>GZIPEncoding</filter-name>

    <url-pattern>/*</url-pattern>

    </filter-mapping>

    ?

    <listener>

    ___________________________________________

    <listener>

    listener 元素用來定義Listener接口,它的主要子元素為<listener-class>

    <listen-class>Listener 的類名稱</listener-class>

    定義Listener的類名稱.例如:com.foo.hello

    <listener>

    范例:

    <listener>

    <listener-class>coreservlet.javaworld.CH11.ContenxtListener</listener-class>

    </listener>

    ?

    <servlet-mapping>

    _____________________________________________

    servlet-mapping 元素包含兩個子元素servlet-nameurl-pattern.用來定義servlet所對應(yīng)URL.

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

    定義Servlet的名稱.

    <url-pattern>ServletURL</url-pattern>

    定義Servlet所對應(yīng)的RUL.例如:<url-pattern>/Servlet/Hello</url-pattern>

    </servlet-mapping>

    范例:

    <servlet-mapping>

    <servlet-name>LoginChecker</servlet-name>

    <url-pattern>/LoginChecker</url-pattern>

    </servlet-mapping>

    ?

    <session-cofing>

    __________________________________

    <session-config>

    session-config 包含一個子元素session-timeout.定義web站臺中的session參數(shù).

    <session-timeout> 分鐘</session-timeout>

    定義這個web站臺所有session的有效期限.單位為分鐘.

    </session-config>

    范例:

    <session-config>

    <session-timeout>20</session-timeout>

    </session-config>

    ?

    <mime-mapping>

    ___________________________________________________

    <mima-mapping>

    mime-mapping 包含兩個子元素extensionmime-type.定義某一個擴(kuò)展名和某一MIMEType做對映.

    <extension> 擴(kuò)展名名稱</extension>

    擴(kuò)展名稱

    <mime-type>MIME 格式</mime-type>

    MIME 格式.

    </mime-mapping>

    范例:

    <mime-mapping>

    <extension>doc</extension>

    <mime-type>application/vnd.ms-word</mime-type>

    </mime-mapping>

    <mime-mapping>

    <extension>xls</extension>

    <mime-type>application/vnd.ms-excel</mime-type>

    </mime-mapping>

    <mime-mapping>

    <extension>ppt</extesnion>

    <mime-type>application/vnd.ms-powerpoint</mime-type>

    </mime-mapping>

    ?

    <welcome-file-list>

    _____________________________________________

    <welcome-file-list>

    welcome-file-list 包含一個子元素welcome-file.用來定義首頁列單.

    <welcome-file> 用來指定首頁文件名稱</welcome-flie>

    welcome-file 用來指定首頁文件名稱.我們可以用<welcome-file>指定幾個首頁,而服務(wù)器會依照設(shè)定的順序來找首頁.

    范例:

    <welcome-file-list>

    <welcome-file>index.jsp</welcome-file>

    <welcome-file>index.htm</welcome-file>

    </welcome-file-list>

    ?

    <error-page>

    _________________________

    <error-page>

    error-page 元素包含三個子元素error-code,exception-typelocation.將錯誤代碼(ErrorCode)或異常(Exception)的種類對應(yīng)

    web站臺資源路徑.

    <error-code> 錯誤代碼</error-code>

    HTTPErrorcode, 例如:404

    <exception-type>Exception</exception-type>

    一個完整名稱的Java異常類型

    <location>/ 路徑</location>

    web站臺內(nèi)的相關(guān)資源路徑

    </error-page>

    范例:

    <error-page>

    <error-code>404</error-code>

    <location>/error404.jsp</location>

    </error-page>

    <error-page>

    <exception-type>java.lang.Exception</exception-type>

    <location>/except.jsp</location>

    </error-page>

    ?

    <jsp-config>

    _______________________________________________

    <jsp-config>

    jsp-config 元素主要用來設(shè)定JSP的相關(guān)配置,<jsp:config>包括<taglib><jsp-property-group>兩個子元素.其中<taglib>元素

    JSP1.2時就已經(jīng)存在了;<jsp-property-group>JSP2.0新增的元素.

    <taglib>

    taglib 元素包含兩個子元素taglib-uritaglib-location.用來設(shè)定JSP網(wǎng)頁用到的TagLibrary路徑.

    <taglib-uri>URI</taglib-uri>

    taglib-uri 定義TLD文件的URI,JSP網(wǎng)頁的taglib指令可以經(jīng)由這個URI存取到TLD文件.

    <taglib-location>/WEB-INF/lib/xxx.tld</taglib-laction>

    TLD 文件對應(yīng)Web站臺的存放位置.

    </taglib>

    ?

    <jsp-property-group>

    jsp-property-group 元素包含8個元素,分別為:

    <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-divlude>.jspf</include-divlude>

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

    ?

    <include-coda>.jspf</include-coda>

    設(shè)置JSP網(wǎng)頁的結(jié)尾,擴(kuò)展名為.jspf

    </jsp-property-group>

    </jsp-config>

    范例:

    <jsp-config>

    <taglib>

    <taglib-uri>Taglib</taglib-uri>

    <taglib-location>/WEB-INF/tlds/MyTaglib.tld</taglib-location>

    </taglib>

    <jsp-property-group>

    <description>

    SpecialpropertygroupforJSPConfigurationJSPexample.

    </description>

    <display-name>JSPConfiguration</display-name>

    <uri-pattern>/*</uri-pattern>

    <el-ignored>true</el-ignored>

    <page-encoding>GB2312</page-encoding>

    <scripting-inivalid>true</scripting-inivalid>

    ............

    </jsp-property-group>

    </jsp-config>

    ?

    <resource-ref>

    ________________________________________________

    <resource-ref>

    resource-ref 元素包括五個子元素description,res-ref-name,res-type,res-auth,res-sharing-scope.利用JNDI取得站臺可

    利用資源.

    <description> 說明</description>

    資源說明

    ?

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

    資源名稱

    ?

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

    資源種類

    ?

    <res-auth>Application|Container</res-auth>

    資源由ApplicationContainer來許可

    ?

    <res-sharing-scope>Shareable|Unshareable</res-sharing-scope>

    資源是否可以共享.默認(rèn)值為Shareable

    范例:

    <resource-ref>

    <description>JNDIJDBCDataSourceofJSPBook</description>

    <res-ref-name>jdbc/sample_db</res-ref-name>

    <res-type>javax.sql.DataSoruce</res-type>

    <res-auth>Container</res-auth>

    </resource-ref>

    ?

    ?

    posted on 2007-06-01 11:55 navy 閱讀(201) 評論(0)  編輯  收藏 所屬分類: Java

    只有注冊用戶登錄后才能發(fā)表評論。


    網(wǎng)站導(dǎo)航:
     
    主站蜘蛛池模板: 女人张腿给男人桶视频免费版 | 亚洲最大的黄色网| 国产aⅴ无码专区亚洲av| 久久精品亚洲乱码伦伦中文| 亚洲成A人片在线观看无码3D| 一区二区免费在线观看| 精品一区二区三区无码免费直播| 久久久青草青青亚洲国产免观| 7723日本高清完整版免费| free哆啪啪免费永久| 每天更新的免费av片在线观看| 在线91精品亚洲网站精品成人| 亚洲区小说区图片区QVOD| 亚洲熟妇av一区二区三区| 国产乱辈通伦影片在线播放亚洲 | 毛片免费在线观看网站| 无人在线观看免费高清视频 | 精品亚洲AV无码一区二区三区| 亚洲一区二区高清| 国产亚洲成人在线播放va| 亚洲中文字幕无码一区二区三区| 在线观看人成网站深夜免费| 亚洲免费网站观看视频| 国产精品无码一区二区三区免费| 精品久久8x国产免费观看| 免费国产成人高清在线观看网站| 三年片在线观看免费西瓜视频| 亚洲人成网站免费播放| 美女视频黄频a免费| 一级毛片aa高清免费观看| 国产成年无码久久久免费| 91av视频免费在线观看| 成年在线网站免费观看无广告| 亚洲免费在线视频播放| 99在线视频免费观看视频| 国产高清在线精品免费软件| 亚洲夜夜欢A∨一区二区三区| 亚洲福利在线播放| 亚洲a一级免费视频| 亚洲无码一区二区三区 | 又粗又硬免费毛片|