struts-config_1_0.dtd : Elements - Entities - Source | Intro - Index
FRAMES / NO FRAMES

struts-config_1_0.dtd

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.



<struts-config> Root element

The "struts-config" element is the root of the configuration file hierarchy, and contains nested elements for all of the other configuration settings.

<struts-config>'s children
NameCardinality
action-mappingsOne or none
data-sourcesOne or none
form-beansOne or none
global-forwardsOne or none
<struts-config>'s attributes
NameValuesDefault
idMatch the ID rules.
Element's model :

(data-sources?, form-beans?, global-forwards?, action-mappings?)


@id Attribute of struts-config

Element identifier.

Possible values : Match the ID rules.


<data-sources> Child of struts-config

The "data-sources" element describes a set of JDBC 2.0 Standard Extension data source objects which will be configured according to the nested "data-source" elements found inside.

<data-sources>'s children
NameCardinality
data-sourceAny number
<data-sources>'s attributes
NameValuesDefault
idMatch the ID rules.
Element's model :

(data-source*)


@id Attribute of data-sources

Element identifier.

Possible values : Match the ID rules.


<data-source> Child of data-sources

The "data-source" element describes a JDBC 2.0 Standard Extension data source object (that implements javax.sql.DataSource) which will be configured according to the properties and nested elements found here, and made available as a servlet context attribute (i.e. application scope bean). The following attributes are required:

key Servlet context attribute key under which this data source will be stored. Default is the value specified by string constant Action.DATA_SOURCE_KEY.

type Fully qualified Java class name of the implementation class (must implement javax.sql.DataSource). Default value is 'org.apache.struts.util.GenericDataSource'.

NOTE: The following attributes are defined by the default data source implementation, and only take effect for that class or subclasses of that class.

WARNING: The use of these attributes is deprecated. You should use nested <set-property> elements to configure *all* properties of your data source implementation.

autoCommit The default auto-commit state for newly created connections.

description The description of this data source.

driverClass The Java class name of the JDBC driver to be used. [REQUIRED]

loginTimeout The maximum number of seconds to wait for a connection to be created or returned. Default is driver dependent.

maxCount The maximum number of connections to be created.

minCount The minimum number of connections to be created.

password The database password to use when connecting. [REQUIRED]

readOnly The default read-only state for newly created connections.

url The JDBC URL to use when connecting. [REQUIRED]

user The database username to use when connecting. [REQUIRED]

<data-source>'s children
NameCardinality
set-propertyAny number
<data-source>'s attributes
NameValuesDefault
autoCommittrue, false, yes, no
description
driverClass
idMatch the ID rules.
key
loginTimeout
maxCount
minCount
password
readOnlytrue, false, yes, no
type
url
user
Element's model :

(set-property*)


@id Attribute of data-source

Element identifier.

Possible values : Match the ID rules.


@key Attribute of data-source

Sorry, no documentation.


@type Attribute of data-source

Sorry, no documentation.


@autoCommit Attribute of data-source

set-property element to configure data source properties.

Possible values : true, false, yes, no


@description Attribute of data-source

Sorry, no documentation.


@driverClass Attribute of data-source

Sorry, no documentation.


@loginTimeout Attribute of data-source

Sorry, no documentation.


@maxCount Attribute of data-source

Sorry, no documentation.


@minCount Attribute of data-source

Sorry, no documentation.


@password Attribute of data-source

Sorry, no documentation.


@readOnly Attribute of data-source

Sorry, no documentation.

Possible values : true, false, yes, no


@url Attribute of data-source

Sorry, no documentation.


@user Attribute of data-source

Sorry, no documentation.


<form-beans> Child of struts-config

The "form-beans" element is the root of the set of form bean descriptors for this application. The following attributes are defined:

type Fully qualified Java class name of the implementation class used for ActionFormBean objects. DEPRECATED.

WARNING: For Struts 1.0, this value is ignored. You can set the default implementation class name with the "formBean" initialization parameter to the Struts controller servlet.

<form-beans>'s children
NameCardinality
form-beanAny number
<form-beans>'s attributes
NameValuesDefault
idMatch the ID rules.
typeorg.apache.struts.action.ActionFormBean
Element's model :

(form-bean*)


@id Attribute of form-beans

Element identifier.

Possible values : Match the ID rules.


@type Attribute of form-beans

Sorry, no documentation.

Default value: org.apache.struts.action.ActionFormBean


<form-bean> Child of form-beans

The "form-bean" element describes a particular form bean, which is a JavaBean that implements the org.apache.struts.action.ActionForm class. The following attributes are defined:

className Fully qualified Java class name of the ActionFormBean implementation class to use. Defaults to the value configured as the "formBean" initialization parameter to the Struts controller servlet.

name Unique identifier of this bean, used to reference it in corresponding action mappings.

type Fully qualified Java class name of the implementation class to be used or generated

<form-bean>'s children
NameCardinality
descriptionOne or none
display-nameOne or none
iconOne or none
set-propertyAny number
<form-bean>'s attributes
NameValuesDefault
className
idMatch the ID rules.
name
type
Element's model :

(icon?, display-name?, description?, set-property*)


@id Attribute of form-bean

Element identifier.

Possible values : Match the ID rules.


@className Attribute of form-bean

Sorry, no documentation.


@name Attribute of form-bean

Sorry, no documentation.

Required


@type Attribute of form-bean

Sorry, no documentation.

Required


<global-forwards> Child of struts-config

The "global-forwards" element configures the global mappings of logical names (used within the application) to mappable resources (identified by context-relative URI paths). A global "forward" with a particular name can be locally overridden by defining a "forward" of the same name within an "action" element. The following attribute are defined:

type Fully qualified Java class name of the implementation class used for ActionForward objects. DEPRECATED.

WARNING: For Struts 1.0, this value is ignored. You can set the default implementation class name with the "forward" initialization parameter to the Struts controller servlet.

<global-forwards>'s children
NameCardinality
forwardAny number
<global-forwards>'s attributes
NameValuesDefault
idMatch the ID rules.
typeorg.apache.struts.action.ActionForward
Element's model :

(forward*)


@id Attribute of global-forwards

Element identifier.

Possible values : Match the ID rules.


@type Attribute of global-forwards

Sorry, no documentation.

Default value: org.apache.struts.action.ActionForward


<forward> Child of global-forwards,action

The "forward" element describes a mapping of a logical name (used within the application) to a mappable resource identified by a context-relative URI path. The following attributes are defined:

className Fully qualified Java class name of the ActionForward implementation class to use. Defaults to the value configured as the "forward" initialization parameter to the Struts controller servlet.

name Unique identifier of this forward, used to reference it in application action classes.

path The context-relative path of the mapped resource.

redirect Set to "true" if sendRedirect() should be used to forward to this resource, or "false" in order to use RequestDispatcher.forward() instead.

<forward>'s children
NameCardinality
descriptionOne or none
display-nameOne or none
iconOne or none
set-propertyAny number
<forward>'s attributes
NameValuesDefault
className
idMatch the ID rules.
name
path
redirecttrue, false, yes, no
Element's model :

(icon?, display-name?, description?, set-property*)


@id Attribute of forward

Element identifier.

Possible values : Match the ID rules.


@className Attribute of forward

Sorry, no documentation.


@name Attribute of forward

Sorry, no documentation.

Required


@path Attribute of forward

Sorry, no documentation.

Required


@redirect Attribute of forward

Sorry, no documentation.

Possible values : true, false, yes, no


<action-mappings> Child of struts-config

The "action-mappings" element configures the mappings from submitted request paths to the corresponding Action classes that should be used to process these requests. The following attributes are defined:

type Fully qualified Java class name of the ActionMapping implementation class to be used. DEPRECATED.

WARNING: For Struts 1.0, this value is ignored. You can set the default implementation class name with the "mapping" initialization parameter to the Struts controller servlet.

<action-mappings>'s children
NameCardinality
actionAny number
<action-mappings>'s attributes
NameValuesDefault
idMatch the ID rules.
typeorg.apache.struts.action.ActionMapping
Element's model :

(action*)


@id Attribute of action-mappings

Element identifier.

Possible values : Match the ID rules.


@type Attribute of action-mappings

Sorry, no documentation.

Default value: org.apache.struts.action.ActionMapping


<action> Child of action-mappings

The "action" element describes a mapping from a request paths to the corresponding Action classes that should be used to process these requests. The following attributes are defined:

attribute Name of the request-scope or session-scope attribute under which our form bean is accessed, if it is other than the bean's specified "name". Optional if "name" is specified, else not allowed.

className Fully qualified Java class name of the ActionMapping implementation class to use. Defaults to the value configured as the "mapping" initialization parameter to the Struts controller servlet.

forward Context-relative path of the servlet or JSP resource that will process this request, instead of instantiating and calling the Action class specified by "type". Exactly one of "forward", "include", or "type" must be specified.

include Context-relative path of the servlet or JSP resource that will process this request, instead of instantiating and calling the Action class specified by "type". Exactly one of "forward", "include", or "type" must be specified.

input Context-relative path of the input form to which control should be returned if a validation error is encountered. Required if "name" is specified and the input bean returns validation errors. Optional if "name" is specified and the input bean does not return validation errors. Not allowed if "name" is not specified.

name Name of the form bean, if any, that is associated with this action.

path The context-relative path of the submitted request, starting with a "/" character, and without the filename extension if extension mapping is used.

parameter General purpose configuration parameter that can be used to pass extra information to the Action selected by this mapping.

prefix Prefix used to match request parameter names to form bean property names, if any. Optional if "name" is specified, else not allowed.

scope Identifier of the scope ("request" or "session") within which our form bean is accessed, if any. Optional if "name" is specified, else not allowed.

suffix Suffix used to match request parameter names to form bean property names, if any. Optional if "name" is specified, else not allowed.

type Fully qualified Java class name of the Action class (implements org.apache.struts.action.Action) to be used to process requests for this mapping if the "forward" or "include" attribute is not included. Exactly one of "forward", "include", or "type" must be specified.

unknown Set to "true" if this action should be configured as the default for this application, to handle all requests not handled by another action. Only one action can be defined as a default within a single application.

validate Set to "true" if the validate() method of the form bean should be called prior to calling this action, or set to "false" if you do not want validation performed.

<action>'s children
NameCardinality
descriptionOne or none
display-nameOne or none
forwardAny number
iconOne or none
set-propertyAny number
<action>'s attributes
NameValuesDefault
attribute
className
forward
idMatch the ID rules.
include
input
name
parameter
path
prefix
scoperequest, session
suffix
type
unknowntrue, false, yes, no
validatetrue, false, yes, no
Element's model :

(icon?, display-name?, description?, set-property*, forward*)


@id Attribute of action

Element identifier.

Possible values : Match the ID rules.


@attribute Attribute of action

Sorry, no documentation.


@className Attribute of action

Sorry, no documentation.


@forward Attribute of action

Sorry, no documentation.


@include Attribute of action

Sorry, no documentation.


@input Attribute of action

Sorry, no documentation.


@name Attribute of action

Sorry, no documentation.


@parameter Attribute of action

Sorry, no documentation.


@path Attribute of action

Sorry, no documentation.

Required


@prefix Attribute of action

Sorry, no documentation.


@scope Attribute of action

Sorry, no documentation.

Possible values : request, session


@suffix Attribute of action

Sorry, no documentation.


@type Attribute of action

Sorry, no documentation.


@unknown Attribute of action

Sorry, no documentation.

Possible values : true, false, yes, no


@validate Attribute of action

Sorry, no documentation.

Possible values : true, false, yes, no


<set-property/> Child of forward,data-source,action,form-bean

The "set-property" element specifies the name and value of an additional JavaBeans configuration property whose setter method will be called on the object that represents our surrounding element. This is especially useful when an extended implementation class (with additional properties) is configured on the <global-forwards> or <action-mappings> elements. The following attributes are defined:

property Name of the JavaBeans property whose setter method will be called.

value String representation of the value to which this property will be set, after suitable type conversion

<set-property>'s attributes
NameValuesDefault
idMatch the ID rules.
property
value

This element is always empty.


@id Attribute of set-property

Element identifier.

Possible values : Match the ID rules.


@property Attribute of set-property

Sorry, no documentation.

Required


@value Attribute of set-property

Sorry, no documentation.

Required


<description> Child of forward,action,form-bean

The "description" element contains descriptive (paragraph length) text about the surrounding element, suitable for use in GUI tools.

<description>'s attributes
NameValuesDefault
idMatch the ID rules.

@id Attribute of description

Element identifier.

Possible values : Match the ID rules.


<display-name> Child of forward,action,form-bean

The "display-name" element contains a short (one line) description of the surrounding element, suitable for use in GUI tools.

<display-name>'s attributes
NameValuesDefault
idMatch the ID rules.

@id Attribute of display-name

Element identifier.

Possible values : Match the ID rules.


<icon> Child of forward,action,form-bean

The "icon" element contains a small-icon and large-icon element which specify the location, relative to the Struts configuration file, for small and large images used to represent the surrounding element in GUI tools.

<icon>'s children
NameCardinality
large-iconOne or none
small-iconOne or none
<icon>'s attributes
NameValuesDefault
idMatch the ID rules.
Element's model :

(small-icon?, large-icon?)


@id Attribute of icon

Element identifier.

Possible values : Match the ID rules.


<large-icon> Child of icon

The "large-icon" element specifies the location, relative to the Struts configuration file, of a resource containing a large (32x32 pixel) icon image.

<large-icon>'s attributes
NameValuesDefault
idMatch the ID rules.

@id Attribute of large-icon

Element identifier.

Possible values : Match the ID rules.


<small-icon> Child of icon

The "small-icon" element specifies the location, relative to the Struts configuration file, of a resource containing a small (16x16 pixel) icon image.

<small-icon>'s attributes
NameValuesDefault
idMatch the ID rules.

@id Attribute of small-icon

Element identifier.

Possible values : Match the ID rules.