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

Java编程

开发平台:

Java

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!--
  3.      DTD for the Struts Application Configuration File, Version 1.0
  4.      To support validation of your configuration file, include the following
  5.      DOCTYPE element at the beginning (after the "xml" declaration):
  6.      <!DOCTYPE struts-config PUBLIC
  7.        "-//Apache Software Foundation//DTD Struts Configuration 1.0//EN"
  8.        "http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd">
  9.      $Id: struts-config_1_0.dtd 48392 2001-06-02 18:20:48Z craigmcc $
  10. -->
  11. <!-- ========== Defined Types ============================================= -->
  12. <!-- A "BeanName" is the identifier of a JavaBean, such as a form bean,
  13.      and also serves as the name of the corresponding scripting variable
  14.      and the name of the JSP attribute under which the bean is accessed.
  15.      Therefore, it must conform to the rules for a Java identifier.
  16. -->
  17. <!ENTITY % BeanName "CDATA">
  18. <!-- A "Boolean" is the string representation of a boolean (true or false)
  19.      variable.
  20. -->
  21. <!ENTITY % Boolean "(true|false|yes|no)">
  22. <!-- A "ClassName" is the fully qualified name of a Java class that is
  23.      instantiated to provide the functionality of the enclosing element.
  24. -->
  25. <!ENTITY % ClassName "CDATA">
  26. <!-- An "Integer" is a character string consisting solely of numeric digits,
  27.      optionally preceeded by a minus sign, that can be converted to a
  28.      32-bit integer.
  29. -->
  30. <!ENTITY % Integer "CDATA">
  31. <!-- A "Location" is a relative path, delimited by "/" characters, that
  32.      defines the location of a resource relative to the location of the
  33.      Struts configuration file itself.
  34. -->
  35. <!ENTITY % Location "#PCDATA">
  36. <!-- A "PropName" is the name of a JavaBeans property, and must begin with
  37.      a lower case letter and contain only characters that are legal in a
  38.      Java identifier.
  39. -->
  40. <!ENTITY % PropName "CDATA">
  41. <!-- A "RequestPath" is a context-relative URI path, beginning with a slash,
  42.      that identifies a mapped resource (such as a JSP page or a servlet)
  43.      within this web application.
  44. -->
  45. <!ENTITY % RequestPath "CDATA">
  46. <!-- The name of a JSP bean scope within which such a form bean may be
  47.      accessed.
  48. -->
  49. <!ENTITY % RequestScope "(request|session)">
  50. <!-- ========== Top Level Elements ======================================== -->
  51. <!-- The "struts-config" element is the root of the configuration file
  52.      hierarchy, and contains nested elements for all of the other
  53.      configuration settings.
  54. -->
  55. <!ELEMENT struts-config (data-sources?, form-beans?, global-forwards?, action-mappings?)>
  56. <!ATTLIST struts-config  id             ID              #IMPLIED>
  57. <!-- The "data-sources" element describes a set of JDBC 2.0 Standard Extension
  58.      data source objects which will be configured according to the nested
  59.      "data-source" elements found inside.
  60. -->
  61. <!ELEMENT data-sources (data-source*)>
  62. <!ATTLIST data-sources   id             ID              #IMPLIED>
  63. <!-- The "data-source" element describes a JDBC 2.0 Standard Extension data
  64.      source object (that implements javax.sql.DataSource) which will be
  65.      configured according to the properties and nested elements found here,
  66.      and made available as a servlet context attribute (i.e. application
  67.      scope bean).  The following attributes are required:
  68.      key             Servlet context attribute key under which this data
  69.                      source will be stored.  Default is the value specified
  70.                      by string constant Action.DATA_SOURCE_KEY.
  71.      type            Fully qualified Java class name of the implementation
  72.                      class (must implement javax.sql.DataSource).  Default
  73.                      value is 'org.apache.struts.util.GenericDataSource'.
  74.      NOTE:  The following attributes are defined by the default data source
  75.      implementation, and only take effect for that class or subclasses of
  76.      that class.
  77.      WARNING:  The use of these attributes is deprecated.  You should use
  78.      nested &lt;set-property&gt; elements to configure *all* properties of
  79.      your data source implementation.
  80.      autoCommit      The default auto-commit state for newly created
  81.                      connections.
  82.      description     The description of this data source.
  83.      driverClass     The Java class name of the JDBC driver to be used.
  84.                      [REQUIRED]
  85.      loginTimeout    The maximum number of seconds to wait for a connection
  86.                      to be created or returned.  Default is driver dependent.
  87.      maxCount        The maximum number of connections to be created.
  88.      minCount        The minimum number of connections to be created.
  89.      password        The database password to use when connecting. [REQUIRED]
  90.      readOnly        The default read-only state for newly created
  91.                      connections.
  92.      url             The JDBC URL to use when connecting. [REQUIRED]
  93.      user            The database username to use when connecting. [REQUIRED]
  94. -->
  95. <!ELEMENT data-source (set-property*)>
  96. <!ATTLIST data-source    id             ID              #IMPLIED>
  97. <!ATTLIST data-source    key            %BeanName;      #IMPLIED>
  98. <!ATTLIST data-source    type           %ClassName;     #IMPLIED>
  99. <!-- All of the following attributes are deprecated.  Use a nested          -->
  100. <!-- set-property element to configure data source properties.              -->
  101. <!ATTLIST data-source    autoCommit     %Boolean;       #IMPLIED>
  102. <!ATTLIST data-source    description    CDATA           #IMPLIED>
  103. <!ATTLIST data-source    driverClass    %ClassName;     #IMPLIED>
  104. <!ATTLIST data-source    loginTimeout   %Integer;       #IMPLIED>
  105. <!ATTLIST data-source    maxCount       %Integer;       #IMPLIED>
  106. <!ATTLIST data-source    minCount       %Integer;       #IMPLIED>
  107. <!ATTLIST data-source    password       CDATA           #IMPLIED>
  108. <!ATTLIST data-source    readOnly       %Boolean;       #IMPLIED>
  109. <!ATTLIST data-source    url            CDATA           #IMPLIED>
  110. <!ATTLIST data-source    user           CDATA           #IMPLIED>
  111. <!-- The "form-beans" element is the root of the set of form bean descriptors
  112.      for this application.  The following attributes are defined:
  113.      type            Fully qualified Java class name of the implementation
  114.                      class used for ActionFormBean objects.  DEPRECATED.
  115.                      WARNING:  For Struts 1.0, this value is ignored.  You
  116.                      can set the default implementation class name with the
  117.                      "formBean" initialization parameter to the Struts
  118.                      controller servlet.
  119. -->
  120. <!ELEMENT form-beans (form-bean*)>
  121. <!ATTLIST form-beans     id             ID              #IMPLIED>
  122. <!ATTLIST form-beans     type           %ClassName;     "org.apache.struts.action.ActionFormBean">
  123. <!-- The "form-bean" element describes a particular form bean, which is a
  124.      JavaBean that implements the org.apache.struts.action.ActionForm
  125.      class.  The following attributes are defined:
  126.      className       Fully qualified Java class name of the ActionFormBean
  127.                      implementation class to use.  Defaults to the value
  128.                      configured as the "formBean" initialization parameter
  129.                      to the Struts controller servlet.
  130.      name            Unique identifier of this bean, used to reference it
  131.                      in corresponding action mappings.
  132.      type            Fully qualified Java class name of the implementation
  133.                      class to be used or generated
  134. -->
  135. <!ELEMENT form-bean (icon?, display-name?, description?, set-property*)>
  136. <!ATTLIST form-bean      id             ID              #IMPLIED>
  137. <!ATTLIST form-bean      className      %ClassName;     #IMPLIED>
  138. <!ATTLIST form-bean      name           %BeanName;      #REQUIRED>
  139. <!ATTLIST form-bean      type           %ClassName;     #REQUIRED>
  140. <!-- The "global-forwards" element configures the global mappings of logical
  141.      names (used within the application) to mappable resources (identified
  142.      by context-relative URI paths).  A global "forward" with a particular name
  143.      can be locally overridden by defining a "forward" of the same name within
  144.      an "action" element.  The following attribute are defined:
  145.      type            Fully qualified Java class name of the implementation
  146.                      class used for ActionForward objects.  DEPRECATED.
  147.                      WARNING:  For Struts 1.0, this value is ignored.  You
  148.                      can set the default implementation class name with the
  149.                      "forward" initialization parameter to the Struts
  150.                      controller servlet.
  151. -->
  152. <!ELEMENT global-forwards (forward*)>
  153. <!ATTLIST global-forwards id            ID              #IMPLIED>
  154. <!ATTLIST global-forwards type          %ClassName;     "org.apache.struts.action.ActionForward">
  155. <!-- The "forward" element describes a mapping of a logical name (used within
  156.      the application) to a mappable resource identified by a context-relative
  157.      URI path.  The following attributes are defined:
  158.      className       Fully qualified Java class name of the ActionForward
  159.                      implementation class to use.  Defaults to the value
  160.                      configured as the "forward" initialization parameter
  161.                      to the Struts controller servlet.
  162.      name            Unique identifier of this forward, used to reference it
  163.                      in application action classes.
  164.      path            The context-relative path of the mapped resource.
  165.      redirect        Set to "true" if sendRedirect() should be used to forward
  166.                      to this resource, or "false" in order to use
  167.                      RequestDispatcher.forward() instead.
  168. -->
  169. <!ELEMENT forward (icon?, display-name?, description?, set-property*)>
  170. <!ATTLIST forward        id             ID              #IMPLIED>
  171. <!ATTLIST forward        className      %ClassName;     #IMPLIED>
  172. <!ATTLIST forward        name           CDATA           #REQUIRED>
  173. <!ATTLIST forward        path           %RequestPath;   #REQUIRED>
  174. <!ATTLIST forward        redirect       %Boolean;       #IMPLIED>
  175. <!-- The "action-mappings" element configures the mappings from submitted
  176.      request paths to the corresponding Action classes that should be
  177.      used to process these requests.  The following attributes are
  178.      defined:
  179.      type           Fully qualified Java class name of the ActionMapping
  180.                     implementation class to be used.  DEPRECATED.
  181.                      WARNING:  For Struts 1.0, this value is ignored.  You
  182.                      can set the default implementation class name with the
  183.                      "mapping" initialization parameter to the Struts
  184.                      controller servlet.
  185. -->
  186. <!ELEMENT action-mappings (action*)>
  187. <!ATTLIST action-mappings id             ID              #IMPLIED>
  188. <!ATTLIST action-mappings type           %ClassName;     "org.apache.struts.action.ActionMapping">
  189. <!-- The "action" element describes a mapping from a request paths to the
  190.      corresponding Action classes that should be used to process these
  191.      requests.  The following attributes are defined:
  192.      attribute       Name of the request-scope or session-scope attribute
  193.                      under which our form bean is accessed, if it is other
  194.                      than the bean's specified "name".  Optional if
  195.                      "name" is specified, else not allowed.
  196.      className       Fully qualified Java class name of the ActionMapping
  197.                      implementation class to use.  Defaults to the value
  198.                      configured as the "mapping" initialization parameter
  199.                      to the Struts controller servlet.
  200.      forward         Context-relative path of the servlet or JSP resource that
  201.                      will process this request, instead of instantiating and
  202.                      calling the Action class specified by "type".  Exactly one
  203.                      of "forward", "include", or "type" must be specified.
  204.      include         Context-relative path of the servlet or JSP resource that
  205.                      will process this request, instead of instantiating and
  206.                      calling the Action class specified by "type".  Exactly one
  207.                      of "forward", "include", or "type" must be specified.
  208.      input           Context-relative path of the input form to which control
  209.                      should be returned if a validation error is encountered.
  210.                      Required if "name" is specified and the input bean
  211.                      returns validation errors.  Optional if "name" is
  212.                      specified and the input bean does not return validation
  213.                      errors.  Not allowed if "name" is not specified.
  214.      name            Name of the form bean, if any, that is associated
  215.                      with this action.
  216.      path            The context-relative path of the submitted request,
  217.                      starting with a "/" character, and without the
  218.                      filename extension if extension mapping is used.
  219.      parameter       General purpose configuration parameter that can be used
  220.                      to pass extra information to the Action selected by this
  221.                      mapping.
  222.      prefix          Prefix used to match request parameter names to form bean
  223.                      property names, if any.  Optional if "name" is specified,
  224.                      else not allowed.
  225.      scope           Identifier of the scope ("request" or "session") within
  226.                      which our form bean is accessed, if any.  Optional if
  227.                      "name" is specified, else not allowed.
  228.      suffix          Suffix used to match request parameter names to form bean
  229.                      property names, if any.  Optional if "name" is specified,
  230.                      else not allowed.
  231.      type            Fully qualified Java class name of the Action class
  232.                      (implements org.apache.struts.action.Action) to be
  233.                      used to process requests for this mapping if the "forward"
  234.                      or "include" attribute is not included.  Exactly one
  235.                      of "forward", "include", or "type" must be specified.
  236.      unknown         Set to "true" if this action should be configured as the
  237.                      default for this application, to handle all requests
  238.                      not handled by another action.  Only one action can be
  239.                      defined as a default within a single application.
  240.      validate        Set to "true" if the validate() method of the form bean
  241.                      should be called prior to calling this action, or set to
  242.                      "false" if you do not want validation performed.
  243. -->
  244. <!ELEMENT action (icon?, display-name?, description?, set-property*, forward*)>
  245. <!ATTLIST action         id             ID              #IMPLIED>
  246. <!ATTLIST action         attribute      %BeanName;      #IMPLIED>
  247. <!ATTLIST action         className      %ClassName;     #IMPLIED>
  248. <!ATTLIST action         forward        %RequestPath;   #IMPLIED>
  249. <!ATTLIST action         include        %RequestPath;   #IMPLIED>
  250. <!ATTLIST action         input          %RequestPath;   #IMPLIED>
  251. <!ATTLIST action         name           %BeanName;      #IMPLIED>
  252. <!ATTLIST action         parameter      CDATA           #IMPLIED>
  253. <!ATTLIST action         path           %RequestPath;   #REQUIRED>
  254. <!ATTLIST action         prefix         CDATA           #IMPLIED>
  255. <!ATTLIST action         scope          %RequestScope;  #IMPLIED>
  256. <!ATTLIST action         suffix         CDATA           #IMPLIED>
  257. <!ATTLIST action         type           %ClassName;     #IMPLIED>
  258. <!ATTLIST action         unknown        %Boolean;       #IMPLIED>
  259. <!ATTLIST action         validate       %Boolean;       #IMPLIED>
  260. <!-- The "set-property" element specifies the name and value of an additional
  261.      JavaBeans configuration property whose setter method will be called
  262.      on the object that represents our surrounding element.  This is especially
  263.      useful when an extended implementation class (with additional properties)
  264.      is configured on the <global-forwards> or <action-mappings> elements.
  265.      The following attributes are defined:
  266.      property        Name of the JavaBeans property whose setter method
  267.                      will be called.
  268.      value           String representation of the value to which this
  269.                      property will be set, after suitable type conversion
  270. -->
  271. <!ELEMENT set-property EMPTY>
  272. <!ATTLIST set-property   id             ID              #IMPLIED>
  273. <!ATTLIST set-property   property       %PropName;      #REQUIRED>
  274. <!ATTLIST set-property   value          CDATA           #REQUIRED>
  275. <!-- ========== Subordinate Elements ====================================== -->
  276. <!-- The "description" element contains descriptive (paragraph length) text
  277.      about the surrounding element, suitable for use in GUI tools.
  278. -->
  279. <!ELEMENT description (#PCDATA)>
  280. <!ATTLIST description    id             ID              #IMPLIED>
  281. <!-- The "display-name" element contains a short (one line) description of
  282.      the surrounding element, suitable for use in GUI tools.
  283. -->
  284. <!ELEMENT display-name (#PCDATA)>
  285. <!ATTLIST display-name   id             ID              #IMPLIED>
  286. <!-- The "icon" element contains a small-icon and large-icon element which
  287.      specify the location, relative to the Struts configuration file, for small
  288.      and large images used to represent the surrounding element in GUI tools.
  289. -->
  290. <!ELEMENT icon (small-icon?, large-icon?)>
  291. <!ATTLIST icon           id             ID              #IMPLIED>
  292. <!-- The "large-icon" element specifies the location, relative to the Struts
  293.      configuration file, of a resource containing a large (32x32 pixel)
  294.      icon image.
  295. -->
  296. <!ELEMENT large-icon (%Location;)>
  297. <!ATTLIST large-icon     id             ID              #IMPLIED>
  298. <!-- The "small-icon" element specifies the location, relative to the Struts
  299.      configuration file, of a resource containing a small (16x16 pixel)
  300.      icon image.
  301. -->
  302. <!ELEMENT small-icon (%Location;)>
  303. <!ATTLIST small-icon     id             ID              #IMPLIED>