web-app_2_2.dtd
上传用户:jishiqi_cj
上传日期:2022-08-08
资源大小:24765k
文件大小:16k
源码类别:

Java编程

开发平台:

Java

  1. <!--
  2. The web-app element is the root of the deployment descriptor for
  3. a web application
  4. -->
  5. <!ELEMENT web-app (icon?, display-name?, description?, distributable?,
  6. context-param*, servlet*, servlet-mapping*, session-config?,
  7. mime-mapping*, welcome-file-list?, error-page*, taglib*,
  8. resource-ref*, security-constraint*, login-config?, security-role*,
  9. env-entry*, ejb-ref*)>
  10. <!--
  11. The icon element contains a small-icon and a large-icon element
  12. which specify the location within the web application for a small and
  13. large image used to represent the web application in a GUI tool. At a
  14. minimum, tools must accept GIF and JPEG format images.
  15. -->
  16. <!ELEMENT icon (small-icon?, large-icon?)>
  17. <!--
  18. The small-icon element contains the location within the web
  19. application of a file containing a small (16x16 pixel) icon image.
  20. -->
  21. <!ELEMENT small-icon (#PCDATA)>
  22. <!--
  23. The large-icon element contains the location within the web
  24. application of a file containing a large (32x32 pixel) icon image.
  25. -->
  26. <!ELEMENT large-icon (#PCDATA)>
  27. <!--
  28. The display-name element contains a short name that is intended
  29. to be displayed by GUI tools
  30. -->
  31. <!ELEMENT display-name (#PCDATA)>
  32. <!--
  33. The description element is used to provide descriptive text about
  34. the parent element.
  35. -->
  36. <!ELEMENT description (#PCDATA)>
  37. <!--
  38. The distributable element, by its presence in a web application
  39. deployment descriptor, indicates that this web application is
  40. programmed appropriately to be deployed into a distributed servlet
  41. container
  42. -->
  43. <!ELEMENT distributable EMPTY>
  44. <!--
  45. The context-param element contains the declaration of a web
  46. application's servlet context initialization parameters.
  47. -->
  48. <!ELEMENT context-param (param-name, param-value, description?)>
  49. <!--
  50. The param-name element contains the name of a parameter.
  51. -->
  52. <!ELEMENT param-name (#PCDATA)>
  53. <!--
  54. The param-value element contains the value of a parameter.
  55. -->
  56. <!ELEMENT param-value (#PCDATA)>
  57. <!--
  58. The servlet element contains the declarative data of a
  59. servlet. If a jsp-file is specified and the load-on-startup element is
  60. present, then the JSP should be precompiled and loaded.
  61. -->
  62. <!ELEMENT servlet (icon?, servlet-name, display-name?, description?,
  63. (servlet-class|jsp-file), init-param*, load-on-startup?, security-role-ref*)>
  64. <!--
  65. The servlet-name element contains the canonical name of the
  66. servlet.
  67. -->
  68. <!ELEMENT servlet-name (#PCDATA)>
  69. <!--
  70. The servlet-class element contains the fully qualified class name
  71. of the servlet.
  72. -->
  73. <!ELEMENT servlet-class (#PCDATA)>
  74. <!--
  75. The jsp-file element contains the full path to a JSP file within
  76. the web application.
  77. -->
  78. <!ELEMENT jsp-file (#PCDATA)>
  79. <!--
  80. The init-param element contains a name/value pair as an
  81. initialization param of the servlet
  82. -->
  83. <!ELEMENT init-param (param-name, param-value, description?)>
  84. <!--
  85. The load-on-startup element indicates that this servlet should be
  86. loaded on the startup of the web application. The optional contents of
  87. these element must be a positive integer indicating the order in which
  88. the servlet should be loaded. Lower integers are loaded before higher
  89. integers. If no value is specified, or if the value specified is not a
  90. positive integer, the container is free to load it at any time in the
  91. startup sequence.
  92. -->
  93. <!ELEMENT load-on-startup (#PCDATA)>
  94. <!--
  95. The servlet-mapping element defines a mapping between a servlet
  96. and a url pattern
  97. -->
  98. <!ELEMENT servlet-mapping (servlet-name, url-pattern)>
  99. <!--
  100. The url-pattern element contains the url pattern of the
  101. mapping. Must follow the rules specified in Section 10 of the Servlet
  102. API Specification.
  103. -->
  104. <!ELEMENT url-pattern (#PCDATA)>
  105. <!--
  106. The session-config element defines the session parameters for
  107. this web application.
  108. -->
  109. <!ELEMENT session-config (session-timeout?)>
  110. <!--
  111. The session-timeout element defines the default session timeout
  112. interval for all sessions created in this web application. The
  113. specified timeout must be expressed in a whole number of minutes.
  114. -->
  115. <!ELEMENT session-timeout (#PCDATA)>
  116. <!--
  117. The mime-mapping element defines a mapping between an extension
  118. and a mime type.
  119. -->
  120. <!ELEMENT mime-mapping (extension, mime-type)>
  121. <!--
  122. The extension element contains a string describing an
  123. extension. example: "txt"
  124. -->
  125. <!ELEMENT extension (#PCDATA)>
  126. <!--
  127. The mime-type element contains a defined mime type. example:
  128. "text/plain"
  129. -->
  130. <!ELEMENT mime-type (#PCDATA)>
  131. <!--
  132. The welcome-file-list contains an ordered list of welcome files
  133. elements.
  134. -->
  135. <!ELEMENT welcome-file-list (welcome-file+)>
  136. <!--
  137. The welcome-file element contains file name to use as a default
  138. welcome file, such as index.html
  139. -->
  140. <!ELEMENT welcome-file (#PCDATA)>
  141. <!--
  142. The taglib element is used to describe a JSP tag library.
  143. -->
  144. <!ELEMENT taglib (taglib-uri, taglib-location)>
  145. <!--
  146. The taglib-uri element describes a URI, relative to the location
  147. of the web.xml document, identifying a Tag Library used in the Web
  148. Application.
  149. -->
  150. <!ELEMENT taglib-uri (#PCDATA)>
  151. <!--
  152. the taglib-location element contains the location (as a resource
  153. relative to the root of the web application) where to find the Tag
  154. Libary Description file for the tag library.
  155. -->
  156. <!ELEMENT taglib-location (#PCDATA)>
  157. <!--
  158. The error-page element contains a mapping between an error code
  159. or exception type to the path of a resource in the web application
  160. -->
  161. <!ELEMENT error-page ((error-code | exception-type), location)>
  162. <!--
  163. The error-code contains an HTTP error code, ex: 404
  164. -->
  165. <!ELEMENT error-code (#PCDATA)>
  166. <!--
  167. The exception type contains a fully qualified class name of a
  168. Java exception type.
  169. -->
  170. <!ELEMENT exception-type (#PCDATA)>
  171. <!--
  172. The location element contains the location of the resource in the
  173. web application
  174. -->
  175. <!ELEMENT location (#PCDATA)>
  176. <!--
  177. The resource-ref element contains a declaration of a Web
  178. Application's reference to an external resource.
  179. -->
  180. <!ELEMENT resource-ref (description?, res-ref-name, res-type, res-auth)>
  181. <!--
  182. The res-ref-name element specifies the name of the resource
  183. factory reference name.
  184. -->
  185. <!ELEMENT res-ref-name (#PCDATA)>
  186. <!--
  187. The res-type element specifies the (Java class) type of the data
  188. source.
  189. -->
  190. <!ELEMENT res-type (#PCDATA)>
  191. <!--
  192. The res-auth element indicates whether the application component
  193. code performs resource signon programmatically or whether the
  194. container signs onto the resource based on the principle mapping
  195. information supplied by the deployer. Must be CONTAINER or SERVLET
  196. -->
  197. <!ELEMENT res-auth (#PCDATA)>
  198. <!--
  199. The security-constraint element is used to associate security
  200. constraints with one or more web resource collections
  201. -->
  202. <!ELEMENT security-constraint (web-resource-collection+,
  203. auth-constraint?, user-data-constraint?)>
  204. <!--
  205. The web-resource-collection element is used to identify a subset
  206. of the resources and HTTP methods on those resources within a web
  207. application to which a security constraint applies. If no HTTP methods
  208. are specified, then the security constraint applies to all HTTP
  209. methods.
  210. -->
  211. <!ELEMENT web-resource-collection (web-resource-name, description?,
  212. url-pattern*, http-method*)>
  213. <!--
  214. The web-resource-name contains the name of this web resource
  215. collection
  216. -->
  217. <!ELEMENT web-resource-name (#PCDATA)>
  218. <!--
  219. The http-method contains an HTTP method (GET | POST |...)
  220. -->
  221. <!ELEMENT http-method (#PCDATA)>
  222. <!--
  223. The user-data-constraint element is used to indicate how data
  224. communicated between the client and container should be protected
  225. -->
  226. <!ELEMENT user-data-constraint (description?, transport-guarantee)>
  227. <!--
  228. The transport-guarantee element specifies that the communication
  229. between client and server should be NONE, INTEGRAL, or
  230. CONFIDENTIAL. NONE means that the application does not require any
  231. transport guarantees. A value of INTEGRAL means that the application
  232. requires that the data sent between the client and server be sent in
  233. such a way that it can't be changed in transit. CONFIDENTIAL means
  234. that the application requires that the data be transmitted in a
  235. fashion that prevents other entities from observing the contents of
  236. the transmission. In most cases, the presence of the INTEGRAL or
  237. CONFIDENTIAL flag will indicate that the use of SSL is required.
  238. -->
  239. <!ELEMENT transport-guarantee (#PCDATA)>
  240. <!--
  241. The auth-constraint element indicates the user roles that should
  242. be permitted access to this resource collection. The role used here
  243. must appear in a security-role-ref element.
  244. -->
  245. <!ELEMENT auth-constraint (description?, role-name*)>
  246. <!--
  247. The role-name element contains the name of a security role.
  248. -->
  249. <!ELEMENT role-name (#PCDATA)>
  250. <!--
  251. The login-config element is used to configure the authentication
  252. method that should be used, the realm name that should be used for
  253. this application, and the attributes that are needed by the form login
  254. mechanism.
  255. -->
  256. <!ELEMENT login-config (auth-method?, realm-name?, form-login-config?)>
  257. <!--
  258. The realm name element specifies the realm name to use in HTTP
  259. Basic authorization
  260. -->
  261. <!ELEMENT realm-name (#PCDATA)>
  262. <!--
  263. The form-login-config element specifies the login and error pages
  264. that should be used in form based login. If form based authentication
  265. is not used, these elements are ignored.
  266. -->
  267. <!ELEMENT form-login-config (form-login-page, form-error-page)>
  268. <!--
  269. The form-login-page element defines the location in the web app
  270. where the page that can be used for login can be found
  271. -->
  272. <!ELEMENT form-login-page (#PCDATA)>
  273. <!--
  274. The form-error-page element defines the location in the web app
  275. where the error page that is displayed when login is not successful
  276. can be found
  277. -->
  278. <!ELEMENT form-error-page (#PCDATA)>
  279. <!--
  280. The auth-method element is used to configure the authentication
  281. mechanism for the web application. As a prerequisite to gaining access
  282. to any web resources which are protected by an authorization
  283. constraint, a user must have authenticated using the configured
  284. mechanism. Legal values for this element are "BASIC", "DIGEST",
  285. "FORM", or "CLIENT-CERT".
  286. -->
  287. <!ELEMENT auth-method (#PCDATA)>
  288. <!--
  289. The security-role element contains the declaration of a security
  290. role which is used in the security-constraints placed on the web
  291. application.
  292. -->
  293. <!ELEMENT security-role (description?, role-name)>
  294. <!--
  295. The role-name element contains the name of a role. This element
  296. must contain a non-empty string.
  297. -->
  298. <!ELEMENT security-role-ref (description?, role-name, role-link)>
  299. <!--
  300. The role-link element is used to link a security role reference
  301. to a defined security role. The role-link element must contain the
  302. name of one of the security roles defined in the security-role
  303. elements.
  304. -->
  305. <!ELEMENT role-link (#PCDATA)>
  306. <!--
  307. The env-entry element contains the declaration of an
  308. application's environment entry. This element is required to be
  309. honored on in J2EE compliant servlet containers.
  310. -->
  311. <!ELEMENT env-entry (description?, env-entry-name, env-entry-value?,
  312. env-entry-type)>
  313. <!--
  314. The env-entry-name contains the name of an application's
  315. environment entry
  316. -->
  317. <!ELEMENT env-entry-name (#PCDATA)>
  318. <!--
  319. The env-entry-value element contains the value of an
  320. application's environment entry
  321. -->
  322. <!ELEMENT env-entry-value (#PCDATA)>
  323. <!--
  324. The env-entry-type element contains the fully qualified Java type
  325. of the environment entry value that is expected by the application
  326. code. The following are the legal values of env-entry-type:
  327. java.lang.Boolean, java.lang.String, java.lang.Integer,
  328. java.lang.Double, java.lang.Float.
  329. -->
  330. <!ELEMENT env-entry-type (#PCDATA)>
  331. <!--
  332. The ejb-ref element is used to declare a reference to an
  333. enterprise bean. 
  334. -->
  335. <!ELEMENT ejb-ref (description?, ejb-ref-name, ejb-ref-type, home, remote,
  336. ejb-link?)>
  337. <!--
  338. The ejb-ref-name element contains the name of an EJB
  339. reference. This is the JNDI name that the servlet code uses to get a
  340. reference to the enterprise bean.
  341. -->
  342. <!ELEMENT ejb-ref-name (#PCDATA)>
  343. <!--
  344. The ejb-ref-type element contains the expected java class type of
  345. the referenced EJB.
  346. -->
  347. <!ELEMENT ejb-ref-type (#PCDATA)>
  348. <!--
  349. The ejb-home element contains the fully qualified name of the
  350. EJB's home interface
  351. -->
  352. <!ELEMENT home (#PCDATA)>
  353. <!--
  354. The ejb-remote element contains the fully qualified name of the
  355. EJB's remote interface
  356. -->
  357. <!ELEMENT remote (#PCDATA)>
  358. <!--
  359. The ejb-link element is used in the ejb-ref element to specify
  360. that an EJB reference is linked to an EJB in an encompassing Java2
  361. Enterprise Edition (J2EE) application package. The value of the
  362. ejb-link element must be the ejb-name of and EJB in the J2EE
  363. application package.
  364. -->
  365. <!ELEMENT ejb-link (#PCDATA)>
  366. <!--
  367. The ID mechanism is to allow tools to easily make tool-specific
  368. references to the elements of the deployment descriptor. This allows
  369. tools that produce additional deployment information (i.e information
  370. beyond the standard deployment descriptor information) to store the
  371. non-standard information in a separate file, and easily refer from
  372. these tools-specific files to the information in the standard web-app
  373. deployment descriptor.
  374. -->
  375. <!ATTLIST web-app id ID #IMPLIED>
  376. <!ATTLIST icon id ID #IMPLIED>
  377. <!ATTLIST small-icon id ID #IMPLIED>
  378. <!ATTLIST large-icon id ID #IMPLIED>
  379. <!ATTLIST display-name id ID #IMPLIED>
  380. <!ATTLIST description id ID #IMPLIED>
  381. <!ATTLIST distributable id ID #IMPLIED>
  382. <!ATTLIST context-param id ID #IMPLIED>
  383. <!ATTLIST param-name id ID #IMPLIED>
  384. <!ATTLIST param-value id ID #IMPLIED>
  385. <!ATTLIST servlet id ID #IMPLIED>
  386. <!ATTLIST servlet-name id ID #IMPLIED>
  387. <!ATTLIST servlet-class id ID #IMPLIED>
  388. <!ATTLIST jsp-file id ID #IMPLIED>
  389. <!ATTLIST init-param id ID #IMPLIED>
  390. <!ATTLIST load-on-startup id ID #IMPLIED>
  391. <!ATTLIST servlet-mapping id ID #IMPLIED>
  392. <!ATTLIST url-pattern id ID #IMPLIED>
  393. <!ATTLIST session-config id ID #IMPLIED>
  394. <!ATTLIST session-timeout id ID #IMPLIED>
  395. <!ATTLIST mime-mapping id ID #IMPLIED>
  396. <!ATTLIST extension id ID #IMPLIED>
  397. <!ATTLIST mime-type id ID #IMPLIED>
  398. <!ATTLIST welcome-file-list id ID #IMPLIED>
  399. <!ATTLIST welcome-file id ID #IMPLIED>
  400. <!ATTLIST taglib id ID #IMPLIED>
  401. <!ATTLIST taglib-uri id ID #IMPLIED>
  402. <!ATTLIST taglib-location id ID #IMPLIED>
  403. <!ATTLIST error-page id ID #IMPLIED>
  404. <!ATTLIST error-code id ID #IMPLIED>
  405. <!ATTLIST exception-type id ID #IMPLIED>
  406. <!ATTLIST location id ID #IMPLIED>
  407. <!ATTLIST resource-ref id ID #IMPLIED>
  408. <!ATTLIST res-ref-name id ID #IMPLIED>
  409. <!ATTLIST res-type id ID #IMPLIED>
  410. <!ATTLIST res-auth id ID #IMPLIED>
  411. <!ATTLIST security-constraint id ID #IMPLIED>
  412. <!ATTLIST web-resource-collection id ID #IMPLIED>
  413. <!ATTLIST web-resource-name id ID #IMPLIED>
  414. <!ATTLIST http-method id ID #IMPLIED>
  415. <!ATTLIST user-data-constraint id ID #IMPLIED>
  416. <!ATTLIST transport-guarantee id ID #IMPLIED>
  417. <!ATTLIST auth-constraint id ID #IMPLIED>
  418. <!ATTLIST role-name id ID #IMPLIED>
  419. <!ATTLIST login-config id ID #IMPLIED>
  420. <!ATTLIST realm-name id ID #IMPLIED>
  421. <!ATTLIST form-login-config id ID #IMPLIED>
  422. <!ATTLIST form-login-page id ID #IMPLIED>
  423. <!ATTLIST form-error-page id ID #IMPLIED>
  424. <!ATTLIST auth-method id ID #IMPLIED>
  425. <!ATTLIST security-role id ID #IMPLIED>
  426. <!ATTLIST security-role-ref id ID #IMPLIED>
  427. <!ATTLIST role-link id ID #IMPLIED>
  428. <!ATTLIST env-entry id ID #IMPLIED>
  429. <!ATTLIST env-entry-name id ID #IMPLIED>
  430. <!ATTLIST env-entry-value id ID #IMPLIED>
  431. <!ATTLIST env-entry-type id ID #IMPLIED>
  432. <!ATTLIST ejb-ref id ID #IMPLIED>
  433. <!ATTLIST ejb-ref-name id ID #IMPLIED>
  434. <!ATTLIST ejb-ref-type id ID #IMPLIED>
  435. <!ATTLIST home id ID #IMPLIED>
  436. <!ATTLIST remote id ID #IMPLIED>
  437. <!ATTLIST ejb-link id ID #IMPLIED>