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

Java编程

开发平台:

Java

  1. <!--
  2.      DTD for the Struts Application Configuration File
  3.      To support validation of your configuration file, include the following
  4.      DOCTYPE element at the beginning (after the "xml" declaration):
  5.      <!DOCTYPE struts-config PUBLIC
  6.        "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
  7.        "http://struts.apache.org/dtds/struts-config_1_2.dtd">
  8.      $Id: struts-config_1_2.dtd 55025 2004-10-18 17:40:29Z craigmcc $
  9. -->
  10. <!-- ========== Defined Types ============================================= -->
  11. <!-- An "AttributeName" is the identifier of a page, request, session, or
  12.      application scope attribute.
  13. -->
  14. <!ENTITY % AttributeName "CDATA">
  15. <!-- A "BeanName" is the identifier of a JavaBean, such as a form bean,
  16.      and also serves as the name of the corresponding scripting variable
  17.      and the name of the JSP attribute under which the bean is accessed.
  18.      Therefore, it must conform to the rules for a Java identifier.
  19. -->
  20. <!ENTITY % BeanName "CDATA">
  21. <!-- A "Boolean" is the string representation of a boolean (true or false)
  22.      variable.
  23. -->
  24. <!ENTITY % Boolean "(true|false|yes|no)">
  25. <!-- A "ClassName" is the fully qualified name of a Java class that is
  26.      instantiated to provide the functionality of the enclosing element.
  27. -->
  28. <!ENTITY % ClassName "CDATA">
  29. <!-- An "Integer" is a character string consisting solely of numeric digits,
  30.      optionally preceeded by a minus sign, that can be converted to a
  31.      32-bit integer.
  32. -->
  33. <!ENTITY % Integer "CDATA">
  34. <!-- A "Location" is a relative path, delimited by "/" characters, that
  35.      defines the location of a resource relative to the location of the
  36.      Struts configuration file itself.
  37. -->
  38. <!ENTITY % Location "#PCDATA">
  39. <!-- A "PropName" is the name of a JavaBeans property, and must begin with
  40.      a lower case letter and contain only characters that are legal in a
  41.      Java identifier.
  42. -->
  43. <!ENTITY % PropName "CDATA">
  44. <!-- A "RequestPath" is an module-relative URI path, beginning with a
  45.      slash, that identifies a mapped resource (such as a JSP page or a servlet)
  46.      within this web application.
  47. -->
  48. <!ENTITY % RequestPath "CDATA">
  49. <!-- The name of a JSP bean scope within which such a form bean may be
  50.      accessed.
  51. -->
  52. <!ENTITY % RequestScope "(request|session)">
  53. <!-- ========== Top Level Elements ======================================== -->
  54. <!-- The "struts-config" element is the root of the configuration file
  55.      hierarchy, and contains nested elements for all of the other
  56.      configuration settings.
  57. -->
  58. <!ELEMENT struts-config (display-name?, description?, data-sources?, form-beans?, global-exceptions?, global-forwards?, action-mappings?, controller?, message-resources*, plug-in*)>
  59. <!ATTLIST struts-config  id             ID              #IMPLIED>
  60. <!-- The "data-sources" element describes a set of DataSource objects [JDBC 2.0
  61.      Standard Extension]. The individual DataSource objects are configured through
  62.      nested <data-source> elements.
  63. -->
  64. <!ELEMENT data-sources (data-source*)>
  65. <!ATTLIST data-sources   id             ID              #IMPLIED>
  66. <!-- The "data-source" element describes a DataSource object [JDBC 2.0 Standard
  67.      Extension] that will be instantiated, configured, and made available as a
  68.      servlet context attribute (or "application-scope bean"). Any object can be
  69.      specified so long as it implements [javax.sql.DataSource] and can be
  70.      configured entirely from JavaBean properties. The following attributes
  71.      are required:
  72.      className       The configuration bean for this DataSource object. If
  73.                      specified, the object must be a subclass of the default
  74.                      configuration bean.
  75.                      ["org.apache.struts.config.DataSourceConfig"]
  76.      key             Servlet context attribute key under which this data source
  77.                      will be stored.  Default is the value specified by string
  78.                      constant defined by Globals.DATA_SOURCE_KEY. The application
  79.                      module prefix (if any) is appended to the key
  80.                      (${key}$prefix}).
  81.                      [org.apache.struts.Globals.DATA_SOURCE_KEY]
  82.                      NOTE: The application module prefix includes the leading
  83.                      slash, so the default datasource for a module named "foo" is
  84.                      stored under "org.apache.struts.action.DATA_SOURCE/foo".
  85.      type          Fully qualified Java class name for this data source object.
  86.                      The class must implement DataSource [javax.sql.DataSource],
  87.                      and the object must be configurable entirely from JavaBean
  88.                      properties.
  89. -->
  90. <!ELEMENT data-source (set-property*)>
  91. <!ATTLIST data-source    id             ID              #IMPLIED>
  92. <!ATTLIST data-source    className      %ClassName;     #IMPLIED>
  93. <!ATTLIST data-source    key            %AttributeName; #IMPLIED>
  94. <!ATTLIST data-source    type           %ClassName;     #REQUIRED>
  95. <!-- The "form-beans" element describes the set of form bean descriptors for this
  96.      module. The following attributes are defined:
  97.      type            Fully qualified Java class to use when instantiating
  98.                      ActionFormBean objects. If specified, the object must be a
  99.                      subclass of the default class type.
  100.                      WARNING:  For Struts 1.0, this value is ignored.  You
  101.                      can set the default implementation class name with the
  102.                      "formBean" initialization parameter to the Struts
  103.                      controller servlet.
  104. -->
  105. <!ELEMENT form-beans (form-bean*)>
  106. <!ATTLIST form-beans     id             ID              #IMPLIED>
  107. <!ATTLIST form-beans     type           %ClassName;     #IMPLIED>
  108. <!-- The "form-bean" element describes an ActionForm subclass
  109.      [org.apache.struts.action.ActionForm] that can be referenced by an "action"
  110.      element.
  111. The "form-bean" element describes a particular form bean, which is a
  112.      JavaBean that implements the org.apache.struts.action.ActionForm
  113.      class.  The following attributes are defined:
  114.      className       The configuration bean for this form bean object. If
  115.                      specified, the object must be a subclass of the default
  116.                      configuration bean.
  117.                      ["org.apache.struts.config.FormBeanConfig"]
  118.      name            The unique identifier for this form bean. Referenced by the
  119.                      <action> element to specify which form bean to use with its
  120.                      request.
  121.      type            Fully qualified Java class name of the ActionForm subclass
  122.                      to use with this form bean.
  123. -->
  124. <!ELEMENT form-bean (icon?, display-name?, description?, set-property*, form-property*)>
  125. <!ATTLIST form-bean      id             ID              #IMPLIED>
  126. <!ATTLIST form-bean      className      %ClassName;     #IMPLIED>
  127. <!ATTLIST form-bean      dynamic        %Boolean;       #IMPLIED>
  128. <!ATTLIST form-bean      name           %BeanName;      #REQUIRED>
  129. <!ATTLIST form-bean      type           %ClassName;     #REQUIRED>
  130. <!-- The "form-property" element describes a JavaBean property that can be used to
  131.      configure an instance of a DynaActionForm or a subclass thereof. This element
  132.      is only utilized when the "type" attribute of the enclosing "form-bean" element
  133.      is [org.apache.struts.action.DynaActionForm] or a subclass of DynaActionForm. If
  134.      a custom DynaActionForm subclass is used, then the "dynamic" attribute of the
  135.      enclosing <form-bean> element must be set to "true". Since Struts 1.1.
  136.      className       The configuration bean for this form property object. If
  137.                      specified, the object must be a subclass of the default
  138.                      configuration bean.
  139.                      ["org.apache.struts.config.FormPropertyConfig"]
  140.      initial         String representation of the initial value for this property.
  141.                      If not specified, primitives will be initialized to zero and
  142.                      objects initialized to the zero-argument instantiation of that
  143.                      object class.  For example, Strings will be initialized to ""
  144.      name            The name of the JavaBean property described by this element.
  145.      size            The number of array elements to create if the value of the
  146.                      "type" attribute specifies an array, but there is no value
  147.                      specified for the "initial" attribute.
  148.      type            Fully qualified Java class name of the field underlying this
  149.                      property, optionally followed by "[]" to indicate that the
  150.                      field is indexed.
  151. -->
  152. <!ELEMENT form-property  (set-property*)>
  153. <!ATTLIST form-property  className      %ClassName;     #IMPLIED>
  154. <!ATTLIST form-property  initial        CDATA           #IMPLIED>
  155. <!ATTLIST form-property  name           %PropName;      #REQUIRED>
  156. <!ATTLIST form-property  size           %Integer;       #IMPLIED>
  157. <!ATTLIST form-property  type           %ClassName;     #REQUIRED>
  158. <!-- The "global-exceptions" element describes a set of exceptions that might be
  159.      thrown by an Action object. The handling of individual exception types is
  160.      configured through nested exception elements. An <action> element may
  161.      override a global exception handler by registering a local exception handler
  162.      for the same exception type. Since Struts 1.1.
  163. -->
  164. <!ELEMENT global-exceptions (exception*)>
  165. <!ATTLIST global-exceptions id          ID              #IMPLIED>
  166. <!-- The "exception" element registers an ExceptionHandler for an exception type.
  167.      The following attributes are defined:
  168.     bundle           Servlet context attribute for the message resources bundle
  169.                      associated with this handler. The default attribute is the
  170.                      value specified by the string constant declared at
  171.                      Globals.MESSAGES_KEY.
  172.                      [org.apache.struts.Globals.MESSAGES_KEY]
  173.     className        The configuration bean for this ExceptionHandler object.
  174.                      If specified, className must be a subclass of the default
  175.                      configuration bean
  176.                      ["org.apache.struts.config.ExceptionConfig"]
  177.     handler          Fully qualified Java class name for this exception handler.
  178.                      ["org.apache.struts.action.ExceptionHandler"]
  179.     key              The key to use with this handler's message resource bundle
  180.                      that will retrieve the error message template for this
  181.                      exception.
  182.     path             The module-relative URI to the resource that will complete
  183.                      the request/response if this exception occurs.
  184.     scope            The context ("request" or "session") that is used to access
  185.                      the ActionError object [org.apache.struts.action.ActionError]
  186.                      for this exception.
  187.     type             Fully qualified Java class name of the exception type to
  188.                      register with this handler.
  189. -->
  190. <!ELEMENT exception (icon?, display-name?, description?, set-property*)>
  191. <!ATTLIST exception      id             ID              #IMPLIED>
  192. <!ATTLIST exception      bundle         %AttributeName; #IMPLIED>
  193. <!ATTLIST exception      className      %ClassName;     #IMPLIED>
  194. <!ATTLIST exception      handler        %ClassName;     #IMPLIED>
  195. <!ATTLIST exception      key            CDATA           #REQUIRED>
  196. <!ATTLIST exception      path           %RequestPath;   #IMPLIED>
  197. <!ATTLIST exception      scope          CDATA           #IMPLIED>
  198. <!ATTLIST exception      type           %ClassName;     #REQUIRED>
  199. <!-- The "global-forwards" element describes a set of ActionForward objects
  200.      [org.apache.struts.action.ActionForward] that are available to all Action
  201.      objects as a return value. The individual ActionForwards are configured
  202.      through nested <forward> elements. An <action> element may override a global
  203.      forward by defining a local <forward> of the same name.
  204.      type            Fully qualified Java class to use when instantiating
  205.                      ActionForward objects.  If specified, the object must be a
  206.                      subclass of the default class type.
  207.                      WARNING:  For Struts 1.0, this value is ignored.  You
  208.                      can set the default implementation class name with the
  209.                      "forward" initialization parameter to the Struts
  210.                      controller servlet.
  211. -->
  212. <!ELEMENT global-forwards (forward*)>
  213. <!ATTLIST global-forwards id            ID              #IMPLIED>
  214. <!ATTLIST global-forwards type          %ClassName;     #IMPLIED>
  215. <!-- The "forward" element describes an ActionForward that is to be made
  216.      available to an Action as a return value. An ActionForward is referenced by
  217.      a logical name and encapsulates a URI. A "forward" element may be used to
  218.      describe both global and local ActionForwards. Global forwards are available
  219.      to all the Action objects in the module. Local forwards can be
  220.      nested within an <action> element and only available to an Action object
  221.      when it is invoked through that ActionMapping.
  222.      className       Fully qualified Java class name of ActionForward
  223.                      subclass to use for this object.
  224.                      ["org.apache.struts.action.ActionForward"]
  225.     contextRelative  Set this to "true" if, in a modular application, the path
  226.                      attribute starts with a slash "/" and should be considered
  227.                      relative to the entire web application rather than the module.
  228.                      Since Struts 1.1.
  229.                      DEPRECATED.
  230.                      [false]
  231.      module          The module prefix to use with this path. This value should
  232.                      begin with a slash ("/").
  233.      name            The unique identifier for this forward. Referenced by the
  234.                      Action object at runtime to select - by its logical name -
  235.                      the resource that should complete the request/response.
  236.      path            The module-relative or context-relative path to the resources
  237.                      that is encapsulated by the logical name of this ActionForward.
  238.                      If the path is to be considered context-relative when used in
  239.                      a modular application, then the contextRelative attribute
  240.                      should be set to "true". This value should begin with a slash
  241.                      ("/") character.
  242.      redirect        Set to "true" if a redirect instruction should be issued to
  243.                      the user-agent so that a new request is issued for this
  244.                      forward's resource. If true,  RequestDispatcher.Redirect is
  245.                      called. If "false", RequestDispatcher.forward is called instead.
  246.                      [false]
  247. -->
  248. <!ELEMENT forward (icon?, display-name?, description?, set-property*)>
  249. <!ATTLIST forward        id             ID              #IMPLIED>
  250. <!ATTLIST forward        className      %ClassName;     #IMPLIED>
  251. <!ATTLIST forward        contextRelative %Boolean;      #IMPLIED>
  252. <!ATTLIST forward        module         %RequestPath;   #IMPLIED>
  253. <!ATTLIST forward        name           CDATA           #REQUIRED>
  254. <!ATTLIST forward        path           %RequestPath;   #REQUIRED>
  255. <!ATTLIST forward        redirect       %Boolean;       #IMPLIED>
  256. <!-- The "action-mappings" element describes a set of ActionMapping objects
  257.      [org.apache.struts.action.ActionMapping] that are available to process
  258.      requests matching the url-pattern our ActionServlet registered with the
  259.      container. The individual ActionMappings are configured through nested
  260.      <action> elements. The following attributes are defined:
  261.      type           Fully qualified Java class to use when instantiating
  262.                     ActionMapping objects. If specified, the object must be a
  263.                     subclass of the default class type.
  264.                     WARNING:  For Struts 1.0, this value is ignored.  You
  265.                     can set the default implementation class name with the
  266.                     "mapping" initialization parameter to the Struts
  267.                     controller servlet.
  268. -->
  269. <!ELEMENT action-mappings (action*)>
  270. <!ATTLIST action-mappings id             ID              #IMPLIED>
  271. <!ATTLIST action-mappings type           %ClassName;     #IMPLIED>
  272. <!-- The "action" element describes an ActionMapping object that is to be used
  273.      to process a request for a specific module-relative URI. The following
  274.      attributes are defined:
  275.      attribute       Name of the request-scope or session-scope attribute that
  276.                      is used to access our ActionForm bean, if it is other than
  277.                      the bean's specified "name". Optional if "name" is specified,
  278.                      else not valid.
  279.      className       The fully qualified Java class name of the ActionMapping
  280.                      subclass to use for this action mapping object. Defaults to
  281.                      the type specified by the enclosing <action-mappings>
  282.                      element or to "org.apache.struts.action.ActionMapping" if
  283.                      not specified.
  284.                      ["org.apache.struts.action.ActionMapping"]
  285.      forward         Module-relative path of the servlet or other resource that
  286.                      will process this request, instead of the Action class
  287.                      specified by "type".  The path WILL NOT be processed
  288.                      through the "forwardPattern" attribute that is configured
  289.                      on the "controller" element for this module.
  290.                      Exactly one of "forward", "include", or "type" must be
  291.                      specified.
  292.      include         Module-relative path of the servlet or other resource that
  293.                      will process this request, instead of the Action class
  294.                      specified by "type".  The path WILL NOT be processed
  295.                      through the "forwardPattern" attribute that is configured
  296.                      on the "controller" element for this module.
  297.                      Exactly one of "forward", "include", or "type" must be
  298.                      specified.
  299.      input           Module-relative path of the action or other resource to
  300.                      which control should be returned if a validation error is
  301.                      encountered. Valid only when "name" is specified. Required
  302.                      if "name" is specified and the input bean returns
  303.                      validation errors. Optional if "name" is specified and the
  304.                      input bean does not return validation errors.
  305.      name            Name of the form bean, if any, that is associated with this
  306.                      action mapping.
  307.      path            The module-relative path of the submitted request, starting
  308.                      with a "/" character, and without the filename extension if
  309.                      extension mapping is used.
  310.                      NOTE:  Do *not* include a period in your path name,
  311.                      because it will look like a filename extension and
  312.                      cause your Action to not be located.
  313.      parameter       General-purpose configuration parameter that can be used to
  314.                      pass extra information to the Action object selected by
  315.                      this action mapping.
  316.      prefix          Prefix used to match request parameter names to ActionForm
  317.                      property names, if any. Optional if "name" is specified,
  318.                      else not allowed.
  319.      roles           Comma-delimited list of security role names that are allowed
  320.                      access to this ActionMapping object. Since Struts 1.1.
  321.      scope           The context ("request" or "session") that is used to
  322.                      access our ActionForm bean, if any.  Optional if "name" is
  323.                      specified, else not valid. [session]
  324.      suffix          Suffix used to match request parameter names to ActionForm
  325.                      bean property names, if any. Optional if "name" is
  326.                      specified, else not valid.
  327.      type            Fully qualified Java class name of the Action subclass
  328.                      [org.apache.struts.action.Action] that will process requests
  329.                      for this action mapping. Not valid if either the "forward"
  330.                      or "include" attribute is specified.  Exactly one of
  331.                      "forward", "include", or "type" must be specified.
  332.      unknown         Set to "true" if this object should be configured as the
  333.                      default action mapping for this module. If a request does not
  334.                      match another object, it will be passed to the ActionMapping
  335.                      object with unknown set to "true". Only one ActionMapping
  336.                      can be marked as "unknown" within a module.
  337.                      [false]
  338.      validate        Set to "true" if the validate method of the ActionForm bean
  339.                      should be called prior to calling the Action object for this
  340.                      action mapping, or set to "false" if you do not want the
  341.                      validate method called.
  342.                      [true]
  343. -->
  344. <!ELEMENT action (icon?, display-name?, description?, set-property*, exception*, forward*)>
  345. <!ATTLIST action         id             ID              #IMPLIED>
  346. <!ATTLIST action         attribute      %BeanName;      #IMPLIED>
  347. <!ATTLIST action         className      %ClassName;     #IMPLIED>
  348. <!ATTLIST action         forward        %RequestPath;   #IMPLIED>
  349. <!ATTLIST action         include        %RequestPath;   #IMPLIED>
  350. <!ATTLIST action         input          %RequestPath;   #IMPLIED>
  351. <!ATTLIST action         name           %BeanName;      #IMPLIED>
  352. <!ATTLIST action         parameter      CDATA           #IMPLIED>
  353. <!ATTLIST action         path           %RequestPath;   #REQUIRED>
  354. <!ATTLIST action         prefix         CDATA           #IMPLIED>
  355. <!ATTLIST action         roles          CDATA           #IMPLIED>
  356. <!ATTLIST action         scope          %RequestScope;  #IMPLIED>
  357. <!ATTLIST action         suffix         CDATA           #IMPLIED>
  358. <!ATTLIST action         type           %ClassName;     #IMPLIED>
  359. <!ATTLIST action         unknown        %Boolean;       #IMPLIED>
  360. <!ATTLIST action         validate       %Boolean;       #IMPLIED>
  361. <!-- The "controller" element describes the ControllerConfig bean
  362.      [org.apache.struts.config.ControllerConfig] that encapsulates
  363.      a module's runtime configuration. The following
  364.      attributes are defined:
  365.      bufferSize      The size of the input buffer used when processing
  366.                      file uploads.
  367.                      [4096]
  368.      className       Fully qualified Java class name of the
  369.                      ControllerConfig subclass for this controller object.
  370.                      If specified, the object must be a subclass of the
  371.                      default class.
  372.                      ["org.apache.struts.config.ControllerConfig"]
  373.      contentType     Default content type (and optional character encoding) to
  374.                      be set on each response. May be overridden by the Action,
  375.                      JSP, or other resource to which the request is forwarded.
  376.                      ["text/html"]
  377.      forwardPattern  Replacement pattern defining how the "path" attribute of a
  378.                      <forward> element is mapped to a context-relative URL when
  379.                      it starts with a slash (and when the contextRelative
  380.                      property is false). This value may consist of any
  381.                      combination of the following:
  382.                      - "$M" - Replaced by the module prefix of this module
  383.                      - "$P" - Replaced by the "path" attribute of the  selected
  384.                      "forward" element
  385.                      - "$$" - Causes a literal dollar sign to be rendered
  386.                      - "$x" - (Where "x" is any character not defined above)
  387.                      Silently swallowed, reserved for future use
  388.                      If not specified, the default forwardPattern is "$M$P",
  389.                      which is consistent with the previous behavior of
  390.                      forwards.  Since Struts 1.1.  ["$M$P"]
  391.      inputForward    Set to "true" if you want the "input" attribute of
  392.                      <action> elements to be the name of a local or global
  393.                      ActionForward, which will then be used to calculate the
  394.                      ultimate URL. Set to "false" (the default) to treat the
  395.                      "input" parameter of <action> elements as a
  396.                      module-relative path to the resource
  397.                      to be used as the input form. Since Struts 1.1.
  398.                      [false]
  399.      locale          Set to "true" if you want a Locale object stored in the
  400.                      user's session if not already present.
  401.                      [true]
  402.      maxFileSize     The maximum size (in bytes) of a file to be accepted as a
  403.                      file upload.  Can be expressed as a number followed by a
  404.                      "K", "M", or "G", which are interpreted to mean kilobytes,
  405.                      megabytes, or gigabytes, respectively.
  406.                      ["250M"]
  407.      memFileSize     The maximum size (in bytes) of a file whose contents will
  408.                      be retained in memory after uploading. Files larger than
  409.                      this threshold will be written to some alternative storage
  410.                      medium, typically a hard disk. Can be expressed as a number
  411.                      followed by a "K", "M", or "G", which are interpreted to
  412.                      mean kilobytes, megabytes, or gigabytes, respectively.
  413.                      ["256K"]
  414.      multipartClass  The fully qualified Java class name of the multipart
  415.                      request handler class to be used with this module.
  416.                      ["org.apache.struts.upload.CommonsMultipartRequestHandler"]
  417.      nocache         Set to "true" if you want the controller to add HTTP
  418.                      headers for defeating caching to every response from
  419.                      this module.  [false]
  420.      pagePattern     Replacement pattern defining how the "page" attribute of
  421.                      custom tags using it is mapped to a context-relative URL
  422.                      of the corresponding resource.  This value may consist of
  423.                      any combination of the following:
  424.                      - "$M" - Replaced by the module prefix of this module
  425.                      - "$P" - Replaced by the value of the "page" attribute
  426.                      - "$$" - Causes a literal dollar sign to be rendered
  427.                      - "$x" - (Where "x" is any character not defined above)
  428.                               Silently swallowed, reserved for future use
  429.                      If not specified, the default forwardPattern is
  430.                      "$M$P", which is consistent with previous hard coded
  431.                      behavior of URL evaluation for "page" attributes.
  432.                      ["$M$P"]
  433.      processorClass  The fully qualified Java class name of the
  434.                      RequestProcessor subclass to be used with this module.
  435.                      ["org.apache.struts.action.RequestProcessor"]
  436.      tempDir         Temporary working directory to use when processing
  437.                      file uploads.
  438.                      [{Directory provided by servlet container}]
  439. -->
  440. <!ELEMENT controller     (set-property*)>
  441. <!ATTLIST controller     id             ID              #IMPLIED>
  442. <!ATTLIST controller     bufferSize     %Integer;       #IMPLIED>
  443. <!ATTLIST controller     className      %ClassName;     #IMPLIED>
  444. <!ATTLIST controller     contentType    CDATA           #IMPLIED>
  445. <!ATTLIST controller     forwardPattern CDATA           #IMPLIED>
  446. <!ATTLIST controller     inputForward   %Boolean;       #IMPLIED>
  447. <!ATTLIST controller     locale         %Boolean;       #IMPLIED>
  448. <!ATTLIST controller     maxFileSize    CDATA           #IMPLIED>
  449. <!ATTLIST controller     memFileSize    CDATA           #IMPLIED>
  450. <!ATTLIST controller     multipartClass %ClassName;     #IMPLIED>
  451. <!ATTLIST controller     nocache        %Boolean;       #IMPLIED>
  452. <!ATTLIST controller     pagePattern    CDATA           #IMPLIED>
  453. <!ATTLIST controller     processorClass %ClassName;     #IMPLIED>
  454. <!ATTLIST controller     tempDir        CDATA           #IMPLIED>
  455. <!-- The "message-resources" element describes a MessageResources object with
  456.      message templates for this module. The following attributes are defined:
  457.      className       The configuration bean for this message resources object.
  458.                      If specified, the object must be a subclass of the default
  459.                      configuration bean.
  460.                      ["org.apache.struts.config.MessageResourcesConfig"]
  461.      factory         Fully qualified Java class name of the
  462.                      MessageResourcesFactory subclass to use for this message
  463.                      resources object.
  464.                      ["org.apache.struts.util.PropertyMessageResourcesFactory"]
  465.      key             Servlet context attribute under which this message
  466.                      resources bundle will be stored. The default attribute is
  467.                      the value specified by the string constant at
  468.                      [Globals.MESSAGES_KEY]. The module prefix (if
  469.                      any) is appended to the key (${key}${prefix}).
  470.                      [org.apache.struts.Globals.MESSAGES_KEY]
  471.                      NOTE: The module  prefix includes the leading
  472.                      slash, so the default message resource bundle for a module
  473.                      named "foo" is stored under
  474.                      "org.apache.struts.action.MESSAGE/foo".
  475.      null            Set to "true" if you want our message resources to return a
  476.                      null string for unknown message keys, or "false" to return a
  477.                      message with the bad key value.
  478.      parameter       Configuration parameter to be passed to the createResources
  479.                      method of our factory object.
  480. -->
  481. <!ELEMENT message-resources (set-property*)>
  482. <!ATTLIST message-resources id          ID              #IMPLIED>
  483. <!ATTLIST message-resources className   %ClassName;     #IMPLIED>
  484. <!ATTLIST message-resources factory     %ClassName;     #IMPLIED>
  485. <!ATTLIST message-resources key         %AttributeName; #IMPLIED>
  486. <!ATTLIST message-resources null        %Boolean;       #IMPLIED>
  487. <!ATTLIST message-resources parameter   CDATA           #REQUIRED>
  488. <!-- The "plug-in" element specifies the fully qualified class name of a
  489.      general-purpose application plug-in module that receives notification of
  490.      application startup and shutdown events. An instance of the specified class
  491.      is created for each element, and can be configured with nested <set-property>
  492.      elements. The following attributes are supported:
  493.      className       Fully qualified Java class name of the plug-in class; must
  494.                      implement [org.apache.struts.action.PlugIn].
  495. -->
  496. <!ELEMENT plug-in           (set-property*)>
  497. <!ATTLIST plug-in           id          ID              #IMPLIED>
  498. <!ATTLIST plug-in           className   %ClassName;     #REQUIRED>
  499. <!-- ========== Subordinate Elements ====================================== -->
  500. <!-- The "description" element contains descriptive (paragraph length) text
  501.      about the surrounding element, suitable for use in GUI tools.
  502. -->
  503. <!ELEMENT description    (#PCDATA)>
  504. <!ATTLIST description    id             ID              #IMPLIED>
  505. <!-- The "display-name" element contains a short (one line) description of
  506.      the surrounding element, suitable for use in GUI tools.
  507. -->
  508. <!ELEMENT display-name (#PCDATA)>
  509. <!ATTLIST display-name   id             ID              #IMPLIED>
  510. <!-- The "icon" element contains a small-icon and large-icon element which
  511.      specify the location, relative to the Struts configuration file, for small
  512.      and large images used to represent the surrounding element in GUI tools.
  513. -->
  514. <!ELEMENT icon           (small-icon?, large-icon?)>
  515. <!ATTLIST icon           id             ID              #IMPLIED>
  516. <!-- The "large-icon" element specifies the location, relative to the Struts
  517.      configuration file, of a resource containing a large (32x32 pixel)
  518.      icon image.
  519. -->
  520. <!ELEMENT large-icon     (%Location;)>
  521. <!ATTLIST large-icon     id             ID              #IMPLIED>
  522. <!-- The "set-property" element specifies the method name and initial value of
  523.      an additional JavaBean configuration property. When the object representing
  524.      the surrounding element is instantiated, the accessor for the indicated
  525.      property is called and passed the indicated value. The "set-property"
  526.      element is especially useful when a custom subclass is used with
  527.      <data-source>, <forward>, <action>, or <plug-in> elements. The subclass
  528.      can be passed whatever other properties may be required to configure the
  529.      object without changing how the struts-config is parsed.
  530.      property        Name of the JavaBeans property whose setter method
  531.                      will be called.
  532.      value           String representation of the value to which this
  533.                      property will be set, after suitable type conversion
  534. -->
  535. <!ELEMENT set-property   EMPTY>
  536. <!ATTLIST set-property   id             ID              #IMPLIED>
  537. <!ATTLIST set-property   property       %PropName;      #REQUIRED>
  538. <!ATTLIST set-property   value          CDATA           #REQUIRED>
  539. <!-- The "small-icon" element specifies the location, relative to the Struts
  540.      configuration file, of a resource containing a small (16x16 pixel)
  541.      icon image.
  542. -->
  543. <!ELEMENT small-icon     (%Location;)>
  544. <!ATTLIST small-icon     id             ID              #IMPLIED>