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

Java编程

开发平台:

Java

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