?? web-app_2.2.dtd
字號(hào):
<!--Copyright 1999 Sun Microsystems, Inc. 901 San Antonio Road,Palo Alto, CA 94303, U.S.A. All rights reserved. This product or document is protected by copyright and distributedunder licenses restricting its use, copying, distribution, anddecompilation. No part of this product or documentation may bereproduced in any form by any means without prior written authorizationof Sun and its licensors, if any. Third party software, including font technology, is copyrighted and licensed from Sun suppliers. Sun, Sun Microsystems, the Sun Logo, Solaris, Java, JavaServer Pages, Java Naming and Directory Interface, JDBC, JDK, JavaMail and Enterprise JavaBeans, are trademarks or registered trademarks of Sun Microsystems, Inc in the U.S. and other countries.All SPARC trademarks are used under license and are trademarksor registered trademarks of SPARC International, Inc.in the U.S. and other countries. Products bearing SPARCtrademarks are based upon an architecture developed by Sun Microsystems, Inc. PostScript is a registered trademark of Adobe Systems, Inc. Federal Acquisitions: Commercial Software - Government Users Subject to Standard License Terms and Conditions. DOCUMENTATION IS PROVIDED "AS IS" AND ALL EXPRESS OR IMPLIEDCONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANYIMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULARPURPOSE OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPTTO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD TO BE LEGALLYINVALID._________________________________________________________________________Copyright 1999 Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, CA 94303, Etats-Unis. Tous droits re'serve's. Ce produit ou document est prote'ge' par un copyright et distribue' avec des licences qui en restreignent l'utilisation, la copie, la distribution,et la de'compilation. Aucune partie de ce produit ou de sa documentationassocie'e ne peut e^tre reproduite sous aucune forme, par quelque moyen que ce soit, sans l'autorisation pre'alable et e'crite de Sun et de ses bailleurs de licence, s'il y en a. Le logiciel de'tenu par des tiers, et qui comprend la technologie relative aux polices de caracte`res, est prote'ge' par un copyright et licencie' par des fournisseurs de Sun. Sun, Sun Microsystems, le logo Sun, Solaris, Java, JavaServer Pages, Java Naming and Directory Interface, JDBC, JDK, JavaMail, et Enterprise JavaBeans, sont des marques de fabrique ou des marques de'pose'es de Sun Microsystems, Inc. aux Etats-Unis et dans d'autres pays. Toutes les marques SPARC sont utilise'es sous licence et sontdes marques de fabrique ou des marques de'pose'es de SPARCInternational, Inc. aux Etats-Unis et dansd'autres pays. Les produits portant les marques SPARC sontbase's sur une architecture de'veloppe'e par Sun Microsystems, Inc. Postcript est une marque enregistre'e d'Adobe Systems Inc. LA DOCUMENTATION EST FOURNIE "EN L'ETAT" ET TOUTES AUTRES CONDITIONS,DECLARATIONS ET GARANTIES EXPRESSES OU TACITES SONT FORMELLEMENT EXCLUES,DANS LA MESURE AUTORISEE PAR LA LOI APPLICABLE, Y COMPRIS NOTAMMENTTOUTE GARANTIE IMPLICITE RELATIVE A LA QUALITE MARCHANDE, A L'APTITUDEA UNE UTILISATION PARTICULIERE OU A L'ABSENCE DE CONTREFACON.--><!--The web-app element is the root of the deployment descriptor fora web application--><!ELEMENT web-app (icon?, display-name?, description?, distributable?,context-param*, servlet*, servlet-mapping*, session-config?,mime-mapping*, welcome-file-list?, error-page*, taglib*,resource-ref*, security-constraint*, login-config?, security-role*,env-entry*, ejb-ref*)><!--The icon element contains a small-icon and a large-icon elementwhich specify the location within the web application for a small andlarge image used to represent the web application in a GUI tool. At aminimum, tools must accept GIF and JPEG format images.--><!ELEMENT icon (small-icon?, large-icon?)><!--The small-icon element contains the location within the webapplication of a file containing a small (16x16 pixel) icon image.--><!ELEMENT small-icon (#PCDATA)><!--The large-icon element contains the location within the webapplication of a file containing a large (32x32 pixel) icon image.--><!ELEMENT large-icon (#PCDATA)><!--The display-name element contains a short name that is intendedto be displayed by GUI tools--><!ELEMENT display-name (#PCDATA)><!--The description element is used to provide descriptive text aboutthe parent element.--><!ELEMENT description (#PCDATA)><!--The distributable element, by its presence in a web applicationdeployment descriptor, indicates that this web application isprogrammed appropriately to be deployed into a distributed servletcontainer--><!ELEMENT distributable EMPTY><!--The context-param element contains the declaration of a webapplication's servlet context initialization parameters.--><!ELEMENT context-param (param-name, param-value, description?)><!--The param-name element contains the name of a parameter.--><!ELEMENT param-name (#PCDATA)><!--The param-value element contains the value of a parameter.--><!ELEMENT param-value (#PCDATA)><!--The servlet element contains the declarative data of aservlet. If a jsp-file is specified and the load-on-startup element ispresent, then the JSP should be precompiled and loaded.--><!ELEMENT servlet (icon?, servlet-name, display-name?, description?,(servlet-class|jsp-file), init-param*, load-on-startup?, security-role-ref*)><!--The servlet-name element contains the canonical name of theservlet.--><!ELEMENT servlet-name (#PCDATA)><!--The servlet-class element contains the fully qualified class nameof the servlet.--><!ELEMENT servlet-class (#PCDATA)><!--The jsp-file element contains the full path to a JSP file withinthe web application.--><!ELEMENT jsp-file (#PCDATA)><!--The init-param element contains a name/value pair as aninitialization param of the servlet--><!ELEMENT init-param (param-name, param-value, description?)><!--The load-on-startup element indicates that this servlet should beloaded on the startup of the web application. The optional contents ofthese element must be a positive integer indicating the order in whichthe servlet should be loaded. Lower integers are loaded before higherintegers. If no value is specified, or if the value specified is not apositive integer, the container is free to load it at any time in thestartup sequence.--><!ELEMENT load-on-startup (#PCDATA)><!--The servlet-mapping element defines a mapping between a servletand a url pattern--><!ELEMENT servlet-mapping (servlet-name, url-pattern)><!--The url-pattern element contains the url pattern of themapping. Must follow the rules specified in Section 10 of the ServletAPI Specification.--><!ELEMENT url-pattern (#PCDATA)><!--The session-config element defines the session parameters forthis web application.--><!ELEMENT session-config (session-timeout?)><!--The session-timeout element defines the default session timeoutinterval for all sessions created in this web application. Thespecified timeout must be expressed in a whole number of minutes.--><!ELEMENT session-timeout (#PCDATA)><!--The mime-mapping element defines a mapping between an extensionand a mime type.--><!ELEMENT mime-mapping (extension, mime-type)><!--The extension element contains a string describing anextension. example: "txt"--><!ELEMENT extension (#PCDATA)><!--The mime-type element contains a defined mime type. example:"text/plain"--><!ELEMENT mime-type (#PCDATA)><!--The welcome-file-list contains an ordered list of welcome fileselements.--><!ELEMENT welcome-file-list (welcome-file+)><!--The welcome-file element contains file name to use as a defaultwelcome file, such as index.html--><!ELEMENT welcome-file (#PCDATA)><!--The taglib element is used to describe a JSP tag library.--><!ELEMENT taglib (taglib-uri, taglib-location)><!--The taglib-uri element describes a URI, relative to the locationof the web.xml document, identifying a Tag Library used in the WebApplication.--><!ELEMENT taglib-uri (#PCDATA)><!--the taglib-location element contains the location (as a resourcerelative to the root of the web application) where to find the TagLibary Description file for the tag library.--><!ELEMENT taglib-location (#PCDATA)><!--The error-page element contains a mapping between an error codeor exception type to the path of a resource in the web application--><!ELEMENT error-page ((error-code | exception-type), location)><!--The error-code contains an HTTP error code, ex: 404--><!ELEMENT error-code (#PCDATA)><!--The exception type contains a fully qualified class name of aJava exception type.--><!ELEMENT exception-type (#PCDATA)><!--The location element contains the location of the resource in theweb application--><!ELEMENT location (#PCDATA)><!--The resource-ref element contains a declaration of a WebApplication's reference to an external resource.--><!ELEMENT resource-ref (description?, res-ref-name, res-type, res-auth)>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -