Tag reference sheet

Tag library reference for the following tag libraries:

bean

This tag library contains tags useful in accessing beans and their properties, as well as defining new beans (based on these accesses) that are accessible to the remainder of the page via scripting variables and page scope attributes. Convenient mechanisms to create new beans based on the value of request cookies, headers, and parameters are also provided.Many of the tags in this tag library will throw a JspException at runtime when they are utilized incorrectly (such as when you specify an invalid combination of tag attributes). JSP allows you to declare an "error page" in the <code>&lt;%@ page %&gt;</code> directive. If you wish to process the actual exception that caused the problem, it is passed to the error page as a request attribute under key org.apache.struts.action.EXCEPTION.If you are viewing this page from within the Struts Documentation Application (or online at http://struts.apache.org), you can learn more about using these tags in the Bean Tags Developer's Guide.

This is version 1.3.

  • include Load the response from a dynamic application request and make it available as a bean
  • message Render an internationalized message string to the response
  • page Expose a specified item from the page context as a bean
  • resource Load a web application resource and make it available as a bean
  • size Define a bean containing the number of elements in a Collection or Map
  • struts Expose a named Struts internal configuration object as a bean
Required attributes are marked with a *

<bean:include>

<p><strong>Load the response from a dynamic application request and make it available as a bean.</strong></p> <p>Perform an internal dispatch to the specified application component (or external URL) and make the response data from that request available as a scoped variable of type <code>String</code>. This tag has a function similar to that of the standard <code>&lt;jsp:include&gt;</code> tag, except that the response data is stored in a page scope attribute instead of being written to the output stream. If the current request is part of a session, the generated request for the include will also include the session identifier (and thus be part of the same session).</p> <p>The URL used to access the specified application component is calculated based on which of the following attributes you specify (you must specify exactly one of them):</p> <ul> <li> <em>forward</em> - Use the value of this attribute as the name of a global <code>ActionForward</code> to be looked up, and use the module-relative or context-relative URI found there.</li> <li> <em>href</em> - Use the value of this attribute unchanged (since this might link to a resource external to the application, the session identifier is <strong>not</strong> included.</li> <li> <em>page</em> - Use the value of this attribute as an module-relative URI to the desired resource.</li> </ul>

Can contain: empty

Attributes

NameDescriptionType
anchor <p>Optional anchor tag ("#xxx") to be added to the generated hyperlink. Specify this value <strong>without</strong> any "#" character.</p> String
forward <p>Logical name of a global <code>ActionForward</code> that contains the actual content-relative URI of the resource to be included.</p> String
href <p>Absolute URL (including the appropriate protocol prefix such as "http:") of the resource to be included. Because this URL could be external to the current web application, the session identifier will <strong>not</strong> be included in the request.</p> String
id* <p>Specifies the name of the scripting variable (and associated page scope attribute) that will be made available with the value of the specified web application resource.</p> String
page <p>Module-relative URI (starting with a '/') of the web application resource to be included.</p> String
transaction <p>Set to <code>true</code> if you want the current transaction control token included in the generated URL for this include.</p> String

<bean:message>

<p><strong>Render an internationalized message string to the response. </strong></p> <p>Retrieves an internationalized message for the specified locale, using the specified message key, and write it to the output stream. Up to five parametric replacements (such as "{0}") may be specified.</p> <p>The message key may be specified directly, using the <code>key</code> attribute, or indirectly, using the <code>name</code> and <code>property</code> attributes to obtain it from a bean.</p> <p><strong>JSTL</strong>: The equivalent JSTL tag is <code>&lt;fmt:message&gt;</code>. For example, <br/> <code> &lt;fmt:message key="my.msg.key"> &lt;fmt:param value="replacement text"/> &lt;/fmt:message> </code> </p>

Can contain: empty

Attributes

NameDescriptionType
arg0 <p>First parametric replacement value, if any.</p> String
arg1 <p>Second parametric replacement value, if any.</p> String
arg2 <p>Third parametric replacement value, if any.</p> String
arg3 <p>Fourth parametric replacement value, if any.</p> String
arg4 <p>Fifth parametric replacement value, if any.</p> String
bundle <p>The name of the application scope bean under which the <code>MessageResources</code> object containing our messages is stored.</p> String
key <p>The message key of the requested message, which must have a corresponding value in the message resources. If not specified, the key is obtained from the <code>name</code> and <code>property</code> attributes.</p> String
locale <p>The name of the session scope bean under which our currently selected <code>Locale</code> object is stored.</p> String
name <p>Specifies the attribute name of the bean whose property is accessed to retrieve the value specified by <code>property</code> (if specified). If <code>property</code> is not specified, the value of this bean itself will be used as the message resource key.</p> String
property <p>Specifies the name of the property to be accessed on the bean specified by <code>name</code>. This value may be a simple, indexed, or nested property reference expression. If not specified, the value of the bean identified by <code>name</code> will itself be used as the message resource key.</p> String
scope <p>Specifies the variable scope searched to retrieve the bean specified by <code>name</code>. If not specified, the default rules applied by <code>PageContext.findAttribute()</code> are applied.</p> String

<bean:page>

<p><strong>Expose a specified item from the page context as a bean. </strong></p> <p>Retrieve the value of the specified item from the page context for this page, and define it as a scripting variable, and a page scope attribute accessible to the remainder of the current page.</p> <p>If a problem occurs while retrieving the specified configuration object, a request time exception will be thrown.</p>

Can contain: empty

Attributes

NameDescriptionType
id* <p>Specifies the name of the scripting variable (and associated page scope attribute) that will be made available with the value of the specified page context property.</p> String
property* <p>Name of the property from our page context to be retrieved and exposed. Must be one of <code>application</code>, <code>config</code>, <code>request</code>, <code>response</code>, or <code>session</code>. </p> String

<bean:resource>

<p><strong>Load a web application resource and make it available as a bean.</strong></p> <p>Retrieve the value of the specified web application resource, and make it available as either a <code>InputStream</code> or a <code>String</code>, depending on the value of the <code>input</code> attribute.</p> <p>If a problem occurs while retrieving the specified resource, a request time exception will be thrown.</p>

Can contain: empty

Attributes

NameDescriptionType
id* <p>Specifies the name of the scripting variable (and associated page scope attribute) that will be made available with the value of the specified web application resource.</p> String
input <p>If any arbitrary value for this attribute is specified, the resource will be made available as an <code>InputStream</code>. If this attribute is not specified, the resource will be made available as a <code>String</code>.</p> String
name* <p>Module-relative name (starting with a '/') of the web application resource to be loaded and made available.</p> String

<bean:size>

<p><strong>Define a bean containing the number of elements in a Collection or Map.</strong></p> <p>Given a reference to an array, Collection or Map, creates a new bean, of type <code>java.lang.Integer</code>, whose value is the number of elements in that collection. You can specify the collection to be counted in any one of the following ways:</p> <ul> <li>As a runtime expression specified as the value of the <code>collection</code> attribute.</li> <li>As a JSP bean specified by the <code>name</code> attribute.</li> <li>As the property, specified by the <code>property</code> attribute, of the JSP bean specified by the <code>name</code> attribute.</li> </ul>

Can contain: empty

Attributes

NameDescriptionType
collection <p>A runtime expression that evaluates to an array, a Collection, or a Map.</p> String
id* <p>The name of a page scope JSP bean, of type <code>java.lang.Integer</code>, that will be created to contain the size of the underlying collection being counted.</p> String
name <p>The name of the JSP bean (optionally constrained to the scope specified by the <code>scope</code> attribute) that contains the collection to be counted (if <code>property</code> is not specified), or whose property getter is called to return the collection to be counted (if <code>property</code> is specified.</p> String
property <p>The name of the property, of the bean specified by the <code>name</code> attribute, whose getter method will return the collection to be counted.</p> String
scope <p>The bean scope within which to search for the JSP bean specified by the <code>name</code> attribute. If not specified, the available scopes are searched in ascending sequence.</p> String

<bean:struts>

<p><strong>Expose a named Struts internal configuration object as a bean. </strong></p> <p>Retrieve the value of the specified Struts internal configuration object, and define it as a scripting variable and as a page scope attribute accessible to the remainder of the current page. You must specify exactly one of the <code>formBean</code>, <code>forward</code>, and <code>mapping</code> attributes to select the configuration object to be exposed.</p> <p>If a problem occurs while retrieving the specified configuration object, a request time exception will be thrown.</p>

Can contain: empty

Attributes

NameDescriptionType
formBean <p>Specifies the name of the Struts <code>ActionFormBean</code> definition object to be exposed.</p> String
forward <p>Specifies the name of the global Struts <code>ActionForward</code> definition object to be exposed.</p> String
id* <p>Specifies the name of the scripting variable (and associated page scope attribute) that will be made available with the value of the specified Struts internal configuration object.</p> String
mapping <p>Specifies the matching path of the Struts <code>ActionMapping</code> definition object to be exposed.</p> String

html

This taglib contains tags used to create struts input forms, as well as other tags generally useful in the creation of HTML-based user interfaces. Many of the tags in this tag library will throw a JspException at runtime when they are utilized incorrectly (such as when you specify an invalid combination of tag attributes). JSP allows you to declare an "error page" in the &lt;%@ page %&gt; directive. If you wish to process the actual exception that caused the problem, it is passed to the error page as a request attribute under key org.apache.struts.action.EXCEPTION.

This is version 1.3.

  • base Render an HTML &lt;base&gt; Element Renders an HTML &lt;base&gt; element with an href attribute pointing to the absolute location of the enclosing JSP page
  • button Render A Button Input Field Renders an HTML &lt;input&gt; element of type button, populated from the specified value or the content of this tag body
  • cancel Render a Cancel Button Renders an HTML &lt;input&gt; element of type submit
  • checkbox Render A Checkbox Input Field Renders an HTML &lt;input&gt; element of type checkbox, populated from the specified value or the specified property of the bean associated with our current form
  • errors Conditionally display a set of accumulated error messages
  • file Render A File Select Input Field Renders an HTML &lt;input&gt; element of type file, defaulting to the specified value or the specified property of the bean associated with our current form
  • form Define An Input Form Renders an HTML &lt;form&gt; element whose contents are described by the body content of this tag
  • frame Render an HTML frame element Renders an HTML &lt;frame&gt; element with processing for the src attribute that is identical to that performed by the &lt;html:link&gt; tag for the href attribute
  • hidden Render A Hidden Field Renders an HTML &lt;input&gt; element of type hidden, populated from the specified value or the specified property of the bean associated with our current form
  • html Render an HTML &lt;html&gt; Element Renders an HTML &lt;html&gt; element with language attributes extracted from the user's current Locale object, if there is one
  • image Render an input tag of type "image" Renders an HTML &lt;input&gt; tag of type "image"
  • img Render an HTML img tag Renders an HTML &lt;img&gt; element with the image at the specified URL
  • javascript Render JavaScript validation based on the validation rules loaded by the ValidatorPlugIn
  • link Render an HTML anchor or hyperlink Renders an HTML &lt;a&gt; element as an anchor definition (if "linkName" is specified) or as a hyperlink to the specified URL
  • messages Conditionally display a set of accumulated messages
  • multibox Render A Checkbox Input Field Renders an HTML &lt;input&gt; element of type checkbox, whose "checked" status is initialized based on whether the specified value matches one of the elements of the underlying property's array of current values
  • option Render A Select Option Render an HTML &lt;option&gt; element, representing one of the choices for an enclosing &lt;select&gt; element
  • options Render a Collection of Select Options Renders a set of HTML &lt;option&gt; elements, representing possible choices for a &lt;select&gt; element
  • optionsCollection Render a Collection of Select Options Renders a set of HTML &lt;option&gt; elements, representing possible choices for a &lt;select&gt; element
  • param Adds a parameter to the following tags: &lt;html:frame&gt; &lt;html:link&gt; &lt;html:rewrite&gt; Since: Struts 1
  • password Render A Password Input Field Renders an HTML &lt;input&gt; element of type password, populated from the specified value or the specified property of the bean associated with our current form
  • radio Render A Radio Button Input Field Renders an HTML &lt;input&gt; element of type radio, populated from the specified property of the bean associated with our current form
  • reset Render A Reset Button Input Field Renders an HTML &lt;input&gt; element of type reset
  • rewrite Render an URI Renders a request URI based on exactly the same rules as the link tag does, but without creating the &lt;a&gt; hyperlink
  • select Render A Select Element Renders an HTML &lt;select&gt; element, associated with a bean property specified by our attributes
  • submit Render A Submit Button Renders an HTML &lt;input&gt; element of type submit If a graphical button is needed (a button with an image), then the image tag is more appropriate
  • text Render An Input Field of Type text Render an input button of type text
  • textarea Render A Textarea Render a textarea element
  • xhtml Render HTML tags as XHTML Using this tag in a page tells all other html taglib tags to render themselves as XHTML 1
Required attributes are marked with a *

<html:base>

<p><strong>Render an HTML <code>&lt;base&gt;</code> Element</strong></p> <p>Renders an HTML <code>&lt;base&gt;</code> element with an <code>href</code> attribute pointing to the absolute location of the enclosing JSP page. This tag is valid only when nested inside an HTML <code>&lt;head&gt;</code> element.</p> <p>This tag is useful because it allows you to use relative URL references in the page that are calculated based on the URL of the page itself, rather than the URL to which the most recent submit took place (which is where the browser would normally resolve relative references against).</p>

Can contain: empty

Attributes

NameDescriptionType
ref <p>The reference from which the base uri will created. Possible values are:</p> <ul> <li> <code>page</code> - The base uri will be the jsp page location. (default)</li> <li> <code>site</code> - The base uri will be the application context path.</li> </ul> String
server <p>The server name to use instead of request.getServerName().</p> String
target <p>The window target for this base reference.</p> String

<html:button>

<p><strong> Render A Button Input Field </strong></p> <p> Renders an HTML <code>&lt;input&gt;</code> element of type <code>button</code>, populated from the specified value or the content of this tag body. This tag is only valid when nested inside a form tag body. </p> <p> If a graphical button is needed (a button with an image), then the <a href="#image"><code>image</code></a> tag is more appropriate. </p>

Can contain:

Attributes

NameDescriptionType
accesskey The keyboard character used to move focus immediately to this element. String
alt <p>The alternate text for this element.</p> String
altKey <p>The message resources key of the alternate text for this element.</p> String
bundle The servlet context attributes key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
dir <p>The direction for weak/neutral text for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
disabled Set to <code>true</code> String
indexed Valid only inside of <code>logic-el:iterate</code> <code>c:forEach</code> <code>true</code> String
lang <p>The language code for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
onblur JavaScript event handler executed when this element loses input focus. String
onchange JavaScript event handler executed when this element loses input focus and its value has changed. String
onclick JavaScript event handler executed when this element receives a mouse click. String
ondblclick JavaScript event handler executed when this element receives a mouse double click. String
onfocus JavaScript event handler executed when this element receives input focus. String
onkeydown JavaScript event handler executed when this element has focus and a key is depressed. String
onkeypress JavaScript event handler executed when this element has focus and a key is depressed and released. String
onkeyup JavaScript event handler executed when this element has focus and a key is released. String
onmousedown JavaScript event handler executed when this element is under the mouse pointer and a mouse button is depressed. String
onmousemove JavaScript event handler executed when this element is under the mouse pointer and the pointer is moved. String
onmouseout JavaScript event handler executed when this element was under the mouse pointer but the pointer was moved outside the element. String
onmouseover JavaScript event handler executed when this element was not under the mouse pointer but the pointer is moved inside the element. String
onmouseup JavaScript event handler executed when this element is under the mouse pointer and a mouse button is released. String
property* Name of the request parameter that will be included with this submission, set to the specified value. String
style CSS styles to be applied to this HTML element. String
styleClass CSS stylesheet class to be applied to this HTML element (renders a "class" attribute). String
styleId Identifier to be assigned to this HTML element (renders an "id" attribute). String
tabindex The tab order (ascending positive integers) for this element. String
title <p>The advisory title for this element.</p> String
titleKey <p>The message resources key for the advisory title for this element.</p> String
value Value of the label to be placed on this button. This value will also be submitted as the value of the specified request parameter. [Body of this tag (if any), or "Click"] String

<html:cancel>

<p><strong>Render a Cancel Button</strong></p> <p> Renders an HTML <code>&lt;input&gt;</code> element of type submit. This tag is only valid when nested inside a form tag body. Pressing of this submit button causes the action servlet to bypass calling the associated form bean validate() method. The action is called normally. </p>

Can contain:

Attributes

NameDescriptionType
accesskey <p>The keyboard character used to move focus immediately to this element.</p> String
alt <p>The alternate text for this element.</p> String
altKey <p>The message resources key of the alternate text for this element.</p> String
bundle The servlet context attributes key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
dir <p>The direction for weak/neutral text for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
disabled <p>Set to <code>true</code></p> String
lang <p>The language code for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
onblur JavaScript event handler executed when this element loses input focus. String
onchange JavaScript event handler executed when this element loses input focus and its value has changed. String
onclick JavaScript event handler executed when this element receives a mouse click. String
ondblclick JavaScript event handler executed when this element receives a mouse double click. String
onfocus JavaScript event handler executed when this element receives input focus. String
onkeydown JavaScript event handler executed when this element has focus and a key is depressed. String
onkeypress JavaScript event handler executed when this element has focus and a key is depressed and released. String
onkeyup JavaScript event handler executed when this element has focus and a key is released. String
onmousedown JavaScript event handler executed when this element is under the mouse pointer and a mouse button is depressed. String
onmousemove JavaScript event handler executed when this element is under the mouse pointer and the pointer is moved. String
onmouseout JavaScript event handler executed when this element was under the mouse pointer but the pointer was moved outside the element. String
onmouseover JavaScript event handler executed when this element was not under the mouse pointer but the pointer is moved inside the element. String
onmouseup JavaScript event handler executed when this element is under the mouse pointer and a mouse button is released. String
property Name of the request parameter that will be included with this submission, set to the specified value. <strong>WARNING</strong> <em>NOT</em> <code>Action.isCancelled()</code> String
style CSS styles to be applied to this HTML element. String
styleClass CSS stylesheet class to be applied to this HTML element (renders a "class" attribute). String
styleId Identifier to be assigned to this HTML element (renders an "id" attribute). String
tabindex The tab order (ascending positive integers) for this element. String
title <p>The advisory title for this element.</p> String
titleKey <p>The message resources key for the advisory title for this element.</p> String
value Value of the label to be placed on this button. This value will also be submitted as the value of the specified request parameter. [Body of this tag (if any), or "Cancel"] String

<html:checkbox>

<p><strong> Render A Checkbox Input Field </strong></p> <p>Renders an HTML <code>&lt;input&gt;</code> element of type <code>checkbox</code>, populated from the specified value or the specified property of the bean associated with our current form. This tag is only valid when nested inside a form tag body.</p> <p> <strong>NOTE</strong>: The underlying property value associated with this field should be of type <code>boolean</code>, and any <code>value</code> you specify should correspond to one of the Strings that indicate a true value ("true", "yes", or "on"). If you wish to utilize a set of related String values, consider using the <code>multibox</code> tag.</p> <p> <strong>WARNING</strong>: In order to correctly recognize unchecked checkboxes, the <code>ActionForm</code> bean associated with this form must include a statement setting the corresponding boolean property to <code>false</code> in the <code>reset()</code> method.</p>

Can contain:

Attributes

NameDescriptionType
accesskey The keyboard character used to move focus immediately to this element. String
alt <p>The alternate text for this element.</p> String
altKey <p>The message resources key of the alternate text for this element.</p> String
bundle The servlet context attributes key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
dir <p>The direction for weak/neutral text for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
disabled <p>Set to <code>true</code></p> String
errorKey <p>Name of the bean (in any scope) under which our error messages have been stored. If not present, the name specified by the <code>Globals.ERROR_KEY</code> constant string will be used.</p> <p> <strong>N.B.</strong> This is used in conjunction with the <code>errorStyle</code>, <code>errorStyleClass</code> and <code>errorStyleId</code> attributes and should be set to the same value as the <code>name</code> attribute on the <code>&lt;html:errors/&gt;</code> tag.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyle <p>CSS styles to be applied to this HTML element if an error exists for it.</p> <p> <strong>N.B.</strong> If present, this overrides the <code>style</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyleClass <p>CSS stylesheet class to be applied to this HTML element if an error exists for it (renders a "class" attribute).</p> <p> <strong>N.B.</strong> If present, this overrides the <code>styleClass</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyleId <p>Identifier to be assigned to this HTML element if an error exists for it (renders an "id" attribute).</p> <p> <strong>N.B.</strong> If present, this overrides the <code>styleId</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
indexed Valid only inside of <code>logic:iterate</code> <code>true</code> String
lang <p>The language code for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
name The attribute name of the bean whose properties are consulted when rendering the current value of this input field. If not specified, the bean associated with the form tag we are nested within is utilized. String
onblur JavaScript event handler executed when this element loses input focus. String
onchange JavaScript event handler executed when this element loses input focus and its value has changed. String
onclick JavaScript event handler executed when this element receives a mouse click. String
ondblclick JavaScript event handler executed when this element receives a mouse double click. String
onfocus JavaScript event handler executed when this element receives input focus. String
onkeydown JavaScript event handler executed when this element has focus and a key is depressed. String
onkeypress JavaScript event handler executed when this element has focus and a key is depressed and released. String
onkeyup JavaScript event handler executed when this element has focus and a key is released. String
onmousedown JavaScript event handler executed when this element is under the mouse pointer and a mouse button is depressed. String
onmousemove JavaScript event handler executed when this element is under the mouse pointer and the pointer is moved. String
onmouseout JavaScript event handler executed when this element was under the mouse pointer but the pointer was moved outside the element. String
onmouseover JavaScript event handler executed when this element was not under the mouse pointer but the pointer is moved inside the element. String
onmouseup JavaScript event handler executed when this element is under the mouse pointer and a mouse button is released. String
property* Name of the request parameter that will be included with this submission, set to the specified value. String
style <p>CSS styles to be applied to this HTML element.</p> <p> <strong>N.B.</strong> If present, the <code>errorStyle</code> overrides this attribute in the event of an error for the element.</p> String
styleClass <p>CSS stylesheet class to be applied to this HTML element (renders a "class" attribute).</p> <p> <strong>N.B.</strong> If present, the <code>errorStyleClass</code> overrides this attribute in the event of an error for the element.</p> String
styleId <p>Identifier to be assigned to this HTML element (renders an "id" attribute).</p> <p> <strong>N.B.</strong> If present, the <code>errorStyleId</code> overrides this attribute in the event of an error for the element.</p> String
tabindex The tab order (ascending positive integers) for this element. String
title <p>The advisory title for this element.</p> String
titleKey <p>The message resources key for the advisory title for this element.</p> String
value The value to be transmitted if this checkbox is checked when the form is submitted. If not specified, the value "on" will be returned. String

<html:errors>

<p><strong> Conditionally display a set of accumulated error messages. </strong></p> <p>Displays a set of error messages prepared by a business logic component and stored as an <code>ActionErrors</code> object, a String, or a String array in any scope. If such a bean is not found, nothing will be rendered.</p> <p>In order to use this tag successfully, you must have defined an application scope <code>MessageResources</code> bean under the default attribute name, with optional definitions of message keys specified in the following attributes:</p> <ul> <li> <strong>header</strong> - Text that will be rendered before the error messages list. Typically, this message text will end with <code>&lt;ul&gt;</code> to start the error messages list (default "errors.header").</li> <li> <strong>footer</strong> - Text that will be rendered after the error messages list. Typically, this message text will begin with <code>&lt;/ul&gt;</code> to end the error messages list (default "errors.footer").</li> <li> <strong>prefix</strong> - Text that will be rendered before each individual error in the list (default "errors.prefix").</li> <li> <strong>suffix</strong> - Text that will be rendered after each individual error in the list (default "errors.suffix").</li> </ul>

Can contain: empty

Attributes

NameDescriptionType
bundle The servlet context attribute key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet. String
footer This value is an optional message resource key that will be printed after the iteration of error messages has finished. Defaults to "errors.footer" if not specified. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
header This value is an optional message resource key that will be printed before the iteration of error messages begins. Defaults to "errors.header" if not specified. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
locale The session attribute key for the Locale used to select messages to be displayed. If not specified, defaults to the Struts standard value. String
name Name of the bean (in any scope) under which our error messages have been stored. If not present, the name specified by the <code>Globals.ERROR_KEY</code> String
prefix This value is an optional message resource key that will be printed before an error message. Defaults to "errors.prefix" if not specified. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
property Name of the property for which error messages should be displayed. If not specified, all error messages (regardless of property) are displayed. String
suffix This value is an optional message resource key that will be printed after an error message. Defaults to "errors.suffix" if not specified. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String

<html:file>

<p><strong> Render A File Select Input Field </strong></p> <p> Renders an HTML <code>&lt;input&gt;</code> element of type file, defaulting to the specified value or the specified property of the bean associated with our current form. This tag is only valid when nested inside a form tag body. </p> <p> As with the corresponding HTML <code>&lt;input&gt;</code> element, the enclosing form element must specify "POST" for the <code>method</code> attribute, and "multipart/form-data" for the <code>enctype</code> attribute. For example: </p> <pre> &lt;html:form method="POST" enctype="multipart/form-data"> &lt;html:file property="theFile" /> &lt;/html:form></pre> <p> WARNING: In order to correctly recognize uploaded files, the ActionForm bean associated with this form must include a statement setting the corresponding org.apache.struts.upload.FormFile property to null in the reset() method. </p>

Can contain:

Attributes

NameDescriptionType
accept Comma-delimited set of content types that the server you submit to knows how to process. This list can be used by the client browser to limit the set of file options that is made available for selection. If not specified, no content type list will be sent. String
accesskey The keyboard character used to move focus immediately to this element. String
alt <p>The alternate text for this element.</p> String
altKey <p>The message resources key of the alternate text for this element.</p> String
bundle The servlet context attributes key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
dir <p>The direction for weak/neutral text for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
disabled Set to <code>true</code> String
errorKey <p>Name of the bean (in any scope) under which our error messages have been stored. If not present, the name specified by the <code>Globals.ERROR_KEY</code> constant string will be used.</p> <p> <strong>N.B.</strong> This is used in conjunction with the <code>errorStyle</code>, <code>errorStyleClass</code> and <code>errorStyleId</code> attributes and should be set to the same value as the <code>name</code> attribute on the &lt;html:errors/&gt; tag.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyle <p>CSS styles to be applied to this HTML element if an error exists for it.</p> <p> <strong>N.B.</strong> If present, this overrides the <code>style</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyleClass <p>CSS stylesheet class to be applied to this HTML element if an error exists for it (renders a "class" attribute).</p> <p> <strong>N.B.</strong> If present, this overrides the <code>styleClass</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyleId <p>Identifier to be assigned to this HTML element if an error exists for it (renders an "id" attribute).</p> <p> <strong>N.B.</strong> If present, this overrides the <code>styleId</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
indexed Valid only inside of <code>logic-el:iterate</code> <code>c:forEach</code> <code>true</code> String
lang <p>The language code for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
maxlength Maximum number of input characters to accept. This is ignored by most browsers. [No limit] String
name The attribute name of the bean whose properties are consulted when rendering the current value of this input field. If not specified, the bean associated with the form tag we are nested within is utilized. String
onblur JavaScript event handler executed when this element loses input focus. String
onchange JavaScript event handler executed when this element loses input focus and its value has changed. String
onclick JavaScript event handler executed when this element receives a mouse click. String
ondblclick JavaScript event handler executed when this element receives a mouse double click. String
onfocus JavaScript event handler executed when this element receives input focus. String
onkeydown JavaScript event handler executed when this element has focus and a key is depressed. String
onkeypress JavaScript event handler executed when this element has focus and a key is depressed and released. String
onkeyup JavaScript event handler executed when this element has focus and a key is released. String
onmousedown JavaScript event handler executed when this element is under the mouse pointer and a mouse button is depressed. String
onmousemove JavaScript event handler executed when this element is under the mouse pointer and the pointer is moved. String
onmouseout JavaScript event handler executed when this element was under the mouse pointer but the pointer was moved outside the element. String
onmouseover JavaScript event handler executed when this element was not under the mouse pointer but the pointer is moved inside the element. String
onmouseup JavaScript event handler executed when this element is under the mouse pointer and a mouse button is released. String
property* Name of the request parameter that will be included with this submission, set to the specified value. String
size Size of the file selection box to be displayed. String
style <p>CSS styles to be applied to this HTML element.</p> <p> <strong>N.B.</strong> If present, the <code>errorStyle</code> overrides this attribute in the event of an error for the element.</p> String
styleClass <p>CSS stylesheet class to be applied to this HTML element (renders a "class" attribute).</p> <p> <strong>N.B.</strong> If present, the <code>errorStyleClass</code> overrides this attribute in the event of an error for the element.</p> String
styleId <p>Identifier to be assigned to this HTML element (renders an "id" attribute).</p> <p> <strong>N.B.</strong> If present, the <code>errorStyleId</code> overrides this attribute in the event of an error for the element.</p> String
tabindex The tab order (ascending positive integers) for this element. String
title <p>The advisory title for this element.</p> String
titleKey <p>The message resources key for the advisory title for this element.</p> String
value <p>Value to which this field should be initialized. [Use the corresponding bean property value or body content (if any) if property is not specified]</p> <p> <strong>NOTE</strong>: When setting this to some value, whether intentional or as the result (for example) of validation errors forcing the user back to the original jsp, this value is ignored by most browsers (for security reasons). This means that your users will have to re-select any previously selected files when submitting the form. Opera web browser will prompt the user so they have a chance to abort the submit. </p> String

<html:form>

<p><strong> Define An Input Form </strong></p> <p> Renders an HTML <code>&lt;form&gt;</code> element whose contents are described by the body content of this tag. The form implicitly interacts with the specified request scope or session scope bean to populate the input fields with the current property values from the bean. </p> <p> The form bean is located, and created if necessary, based on the form bean specification for the associated <code>ActionMapping</code>. </p>

Can contain: JSP

Attributes

NameDescriptionType
acceptCharset The list of character encodings for input data that the server should accept. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.2</dd></dl> String
action <p>The URL to which this form will be submitted. This value is also used to select the ActionMapping we are assumed to be processing, from which we can identify the appropriate form bean and scope. If a value is not provided, the original URI (servletPath) for the request is used.</p> <p>If you are using extension mapping for selecting the controller servlet, this value should be equal to the <code>path</code> attribute of the corresponding <code>&lt;action&gt;</code> element, optionally followed by the correct extension suffix.</p> <p>If you are using path mapping to select the controller servlet, this value should be exactly equal to the <code>path</code> attribute of the corresponding <code>&lt;action&gt;</code> element.</p> String
dir <p>The direction for weak/neutral text for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
disabled Set to <code>true</code> if the Form's input fields should be read only. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.7</dd></dl> String
enctype The content encoding to be used to submit this form, if the method is POST. This must be set to "multipart/form-data" if you are using the file tag to enable file upload. If not specified, the browser default (normally "application/x-www-form-urlencoded") is used. String
focus The field name (among the fields on this form) to which initial focus will be assigned with a JavaScript function. If not specified, no special JavaScript for this purpose will be rendered. String
focusIndex If the focus field is a field array, such as a radio button group, you can specify the index in the array to receive focus. <dl><dt><b>Since:</b></dt> <dd>Struts 1.1</dd></dl> String
lang <p>The language code for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
method The HTTP method that will be used to submit this request (GET, POST). [POST] String
onreset JavaScript event handler executed if the form is reset. String
onsubmit JavaScript event handler executed if the form is submitted. String
readonly Set to <code>true</code> if this input field should be read only. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.7</dd></dl> String
scriptLanguage The form's focus &lt;script&gt; element will not contain a language attribute when this is set to false. The default is true but this property is ignored in XHMTL mode. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2</dd></dl> String
style CSS styles to be applied to this HTML element. String
styleClass CSS stylesheet class to be applied to this HTML element (renders a "class" attribute). String
styleId Identifier to be assigned to this HTML element (renders an "id" attribute). String
target Window target to which this form is submitted, such as for use in framed presentations. String

<html:frame>

<p><strong>Render an HTML frame element</strong></p> <p>Renders an HTML <code>&lt;frame&gt;</code> element with processing for the <code>src</code> attribute that is identical to that performed by the <code>&lt;html:link&gt;</code> tag for the <code>href</code> attribute. URL rewriting will be applied automatically, to maintain session state in the absence of cookies.</p> <p>The base URL for this frame is calculated based on which of the following attributes you specify (you must specify exactly one of them):</p> <ul> <li> <em>forward</em> - Use the value of this attribute as the name of a global <code>ActionForward</code> to be looked up, and use the module-relative or context-relative URI found there.</li> <li> <em>href</em> - Use the value of this attribute unchanged. </li> <li> <em>page</em> - Use the value of this attribute as a module-relative URI, and generate a server-relative URI by including the context path and application prefix.</li> <li> <em>action</em> - Use the value of this attribute as the logical name of a global Action that contains the actual content-relative URI of the destination of this transfer.</li> </ul> <p>Normally, the hyperlink you specify with one of the attributes described in the previous paragraph will be left unchanged (other than URL rewriting if necessary). However, there are two ways you can append one or more dynamically defined query parameters to the hyperlink -- specify a single parameter with the <code>paramId</code> attribute (and its associated attributes to select the value), or specify the <code>name</code> (and optional <code>property</code>) attributes to select a <code>java.util.Map</code> bean that contains one or more parameter ids and corresponding values. </p> <p>To specify a single parameter, use the <code>paramId</code> attribute to define the name of the request parameter to be submitted. To specify the corresponding value, use one of the following approaches:</p> <ul> <li> <em>Specify only the <code>paramName</code> attribute</em> - The named JSP bean (optionally scoped by the value of the <code>paramScope</code> attribute) must identify a value that can be converted to a String.</li> <li> <em>Specify both the <code>paramName</code> and <code>paramProperty</code> attributes</em> - The specified property getter method will be called on the JSP bean identified by the <code>paramName</code> (and optional <code>paramScope</code>) attributes, in order to select a value that can be converted to a String.</li> </ul> <p>If you prefer to specify a <code>java.util.Map</code> that contains all of the request parameters to be added to the hyperlink, use one of the following techniques:</p> <ul> <li> <em>Specify only the <code>name</code> attribute</em> - The named JSP bean (optionally scoped by the value of the <code>scope</code> attribute) must identify a <code>java.util.Map</code> containing the parameters.</li> <li> <em>Specify both <code>name</code> and <code>property</code> attributes</em> - The specified property getter method will be called on the bean identified by the <code>name</code> (and optional <code>scope</code>) attributes, in order to return the <code>java.util.Map</code> containing the parameters.</li> </ul> <p>As the <code>Map</code> is processed, the keys are assumed to be the names of query parameters to be appended to the hyperlink. The value associated with each key must be either a String or a String array representing the parameter value(s), or an object whose toString() method will be called. If a String array is specified, more than one value for the same query parameter name will be created.</p> <p>Additionally, you can request that the current transaction control token, if any, be included in the generated hyperlink by setting the <code>transaction</code> attribute to <code>true</code>. You can also request that an anchor ("#xxx") be added to the end of the URL that is created by any of the above mechanisms, by using the <code>anchor</code> attribute.</p>

Can contain: JSP

Attributes

NameDescriptionType
action <p>Logical name of a global <code>Action</code> that contains the actual content-relative URI of the destination of this transfer. This hyperlink may be dynamically modified by the inclusion of query parameters, as described in the tag description. You <strong>must</strong> specify exactly one of the <code>action</code> attribute, the <code>forward</code> attribute, the <code>href</code> attribute, or the <code>page</code> attribute.</p> <p>Additionally, you can specify a <code>module</code> prefix for linking to other modules.</p> String
anchor <p>Optional anchor tag ("#xxx") to be added to the generated hyperlink. Specify this value <strong>without</strong> any "#" character.</p> String
bundle The servlet context attributes key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
forward <p>Logical name of a global <code>ActionForward</code> that contains the actual content-relative URI of the destination of this transfer. This hyperlink may be dynamically modified by the inclusion of query parameters, as described in the tag description. You <strong>must</strong> specify exactly one of the <code>action</code> attribute, the <code>forward</code> attribute, the <code>href</code> attribute, or the <code>page</code> attribute.</p> String
frameName <p>Value for the <code>name</code> attribute of the rendered <code>&lt;frame&gt;</code> element.</p> String
frameborder <p>Should a frame border be generated around this frame (1) or not (0)?</p> String
href <p>The URL to which this hyperlink will transfer control if activated. This hyperlink may be dynamically modified by the inclusion of query parameters, as described in the tag description. You <strong>must</strong> specify exactly one of the <code>action</code> attribute, the <code>forward</code> attribute, the <code>href</code> attribute, or the <code>page</code> attribute.</p> String
longdesc <p>URI of a long description of the frame. This description should supplement the short description provided by the <code>title</code> attribute, and may be particularly useful for non-visual user agents.</p> String
marginheight <p>The amount of space (in pixels) to be left between the frame's contents and its top and bottom margins.</p> String
marginwidth <p>The amount of space (in pixels) to be left between the frame's contents and its left and right margins.</p> String
module <p>Prefix name of a <code>Module</code> that contains the action mapping for the <code>Action</code> that is specified by the <code>action</code> attribute. You <strong>must</strong> specify an <code>action</code> attribute for this to have an effect.</p> <p> <strong>Note: </strong>Use "" to map to the default module.</p> String
name <p>The name of a JSP bean that contains a <code>Map</code> representing the query parameters (if <code>property</code> is not specified), or a JSP bean whose property getter is called to return a <code>Map</code> (if <code>property</code> is specified).</p> String
noresize <p>Should users be disallowed from resizing the frame? (true, false).</p> String
page <p>The module-relative path (beginning with a "/" character) to which this hyperlink will transfer control if activated. This hyperlink may be dynamically modified by the inclusion of query parameters, as described in the tag description. You <strong>must</strong> specify exactly one of the <code>action</code> attribute, the <code>forward</code> attribute, the <code>href</code> attribute, or the <code>page</code> attribute.</p> String
paramId <p>The name of the request parameter that will be dynamically added to the generated hyperlink. The corresponding value is defined by the <code>paramName</code> and (optional) <code>paramProperty</code> attributes, optionally scoped by the <code>paramScope</code> attribute</p> String
paramName <p>The name of a JSP bean that is a String containing the value for the request parameter named by <code>paramId</code> (if <code>paramProperty</code> is not specified), or a JSP bean whose property getter is called to return a String (if <code>paramProperty</code> is specified). The JSP bean is constrained to the bean scope specified by the <code>paramScope</code> property, if it is specified.</p> String
paramProperty <p>The name of a property of the bean specified by the <code>paramName</code> attribute, whose return value must be a String containing the value of the request parameter (named by the <code>paramId</code> attribute) that will be dynamically added to this hyperlink.</p> String
paramScope <p>The scope within which to search for the bean specified by the <code>paramName</code> attribute. If not specified, all scopes are searched.</p> String
property <p>The name of a property of the bean specified by the <code>name</code> attribute, whose return value must be a <code>java.util.Map</code> containing the query parameters to be added to the hyperlink. You <strong>must</strong> specify the <code>name</code> attribute if you specify this attribute.</p> String
scope <p>The scope within which to search for the bean specified by the <code>name</code> attribute. If not specified, all scopes are searched.</p> String
scrolling <p>Should scroll bars be created unconditionally (yes), never (no), or only when needed (auto)?</p> String
style <p>CSS styles to be applied to this element.</p> String
styleClass CSS stylesheet class to be applied to this HTML element (renders a "class" attribute). String
styleId Identifier to be assigned to this HTML element (renders an "id" attribute). String
title <p>The advisory title for this element.</p> String
titleKey <p>The message resources key for the advisory title for this element.</p> String
transaction <p>If set to <code>true</code>, any current transaction control token will be included in the generated hyperlink, so that it will pass an <code>isTokenValid()</code> test in the receiving Action.</p> String

<html:hidden>

<p><strong> Render A Hidden Field </strong></p> <p> Renders an HTML <code>&lt;input&gt;</code> element of type hidden, populated from the specified value or the specified property of the bean associated with our current form. This tag is only valid when nested inside a form tag body. </p>

Can contain: empty

Attributes

NameDescriptionType
accesskey The keyboard character used to move focus immediately to this element. String
alt <p>The alternate text for this element.</p> String
altKey <p>The message resources key of the alternate text for this element.</p> String
bundle The servlet context attributes key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
dir <p>The direction for weak/neutral text for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
disabled Set to <code>true</code> String
indexed Valid only inside of <code>logic-el:iterate</code> <code>c:forEach</code> <code>true</code> String
lang <p>The language code for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
name The attribute name of the bean whose properties are consulted when rendering the current value of this input field. If not specified, the bean associated with the form tag we are nested within is utilized. String
onblur JavaScript event handler executed when this element loses input focus. String
onchange JavaScript event handler executed when this element loses input focus and its value has changed. String
onclick JavaScript event handler executed when this element receives a mouse click. String
ondblclick JavaScript event handler executed when this element receives a mouse double click. String
onfocus JavaScript event handler executed when this element receives input focus. String
onkeydown JavaScript event handler executed when this element has focus and a key is depressed. String
onkeypress JavaScript event handler executed when this element has focus and a key is depressed and released. String
onkeyup JavaScript event handler executed when this element has focus and a key is released. String
onmousedown JavaScript event handler executed when this element is under the mouse pointer and a mouse button is depressed. String
onmousemove JavaScript event handler executed when this element is under the mouse pointer and the pointer is moved. String
onmouseout JavaScript event handler executed when this element was under the mouse pointer but the pointer was moved outside the element. String
onmouseover JavaScript event handler executed when this element was not under the mouse pointer but the pointer is moved inside the element. String
onmouseup JavaScript event handler executed when this element is under the mouse pointer and a mouse button is released. String
property* Name of this input field, and the name of the corresponding bean property if value is not specified. The corresponding bean property (if any) must be of type String. String
style CSS styles to be applied to this HTML element. String
styleClass CSS stylesheet class to be applied to this HTML element (renders a "class" attribute). String
styleId Identifier to be assigned to this HTML element (renders an "id" attribute). String
title <p>The advisory title for this element.</p> String
titleKey <p>The message resources key for the advisory title for this element.</p> String
value Value to which this field should be initialized. [Use the corresponding bean property value] String
write Should the value of this field also be rendered to the response page to make it visible, in addition to creating an HTML type="hidden" element? By default, only the hidden element is created. String

<html:html>

<p><strong>Render an HTML <code>&lt;html&gt;</code> Element </strong></p> <p>Renders an HTML <code>&lt;html&gt;</code> element with language attributes extracted from the user's current Locale object, if there is one.</p>

Can contain: JSP

Attributes

NameDescriptionType
lang Renders a lang attribute with the locale stored in the user's session. If not found in the session, the language from the <code>Accept-Language</code> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2</dd></dl> String
xhtml <p>Set to <code>true</code> in order to render <code>xml:lang</code> and <code>xmlns</code> attributes on the generated <code>html</code> element. This also causes all other html tags to render as XHTML 1.0 (the <code>&lt;html:xhtml/&gt;</code> tag has a similar purpose). </p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.1</dd></dl> String

<html:image>

<p><strong> Render an input tag of type "image" </strong></p> <p>Renders an HTML <code>&lt;input&gt;</code> tag of type "image". The base URL for this image is calculated directly based on the value specified in the <code>src</code> or <code>page</code> attributes, or indirectly by looking up a message resource string based on the <code>srcKey</code> or <code>pageKey</code> attributes. You <strong>must</strong> specify exactly one of these attributes.</p> <p>If you would like to obtain the coordinates of the mouse click that submitted this request, see the information below on the <code>property</code> attribute.</p> <p>This tag is only valid when nested inside a form tag body.</p>

Can contain:

Attributes

NameDescriptionType
accesskey <p>The keyboard character used to move focus immediately to this element.</p> String
align <p>The alignment option for this image.</p> String
alt <p>The alternate text for this image.</p> String
altKey <p>The message resources key of the alternate text for this image.</p> String
border <p>The width (in pixels) of the border around this image.</p> String
bundle <p>The servlet context attribute key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet.</p> String
dir <p>The direction for weak/neutral text for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
disabled Set to <code>true</code> String
indexed Valid only inside of <code>logic-el:iterate</code> <code>c:forEach</code> <code>true</code> String
lang <p>The language code for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
locale <p>The session attribute key for the Locale used to select internationalized messages. If not specified, defaults to the Struts standard value.</p> String
module <p>Prefix name of a <code>Module</code> that the <code>page</code> or <code>pageKey</code> attributes relate to.</p> String
onblur JavaScript event handler executed when this element loses input focus. String
onchange JavaScript event handler executed when this element loses input focus and its value has changed. String
onclick JavaScript event handler executed when this element receives a mouse click. String
ondblclick JavaScript event handler executed when this element receives a mouse double click. String
onfocus JavaScript event handler executed when this element receives input focus. String
onkeydown JavaScript event handler executed when this element has focus and a key is depressed. String
onkeypress JavaScript event handler executed when this element has focus and a key is depressed and released. String
onkeyup JavaScript event handler executed when this element has focus and a key is released. String
onmousedown JavaScript event handler executed when this element is under the mouse pointer and a mouse button is depressed. String
onmousemove JavaScript event handler executed when this element is under the mouse pointer and the pointer is moved. String
onmouseout JavaScript event handler executed when this element was under the mouse pointer but the pointer was moved outside the element. String
onmouseover JavaScript event handler executed when this element was not under the mouse pointer but the pointer is moved inside the element. String
onmouseup JavaScript event handler executed when this element is under the mouse pointer and a mouse button is released. String
page <p>The module-relative path of the image for this input tag.</p> String
pageKey <p>The key of the message resources string specifying the module-relative path of the image for this input tag.</p> String
property <p>The property name of this image tag. The parameter names for the request will appear as "property.x" and "property.y", the x and y representing the coordinates of the mouse click for the image. A way of retrieving these values through a form bean is to define getX(), getY(), setX(), and setY() methods, and specify your property as a blank string (property="").</p> String
src <p>The source URL of the image for this input tag.</p> String
srcKey <p>The key of the message resources string specifying the source URL of the image for this input tag.</p> String
style CSS styles to be applied to this HTML element. String
styleClass CSS stylesheet class to be applied to this HTML element (renders a "class" attribute). String
styleId Identifier to be assigned to this HTML element (renders an "id" attribute). String
tabindex The tab order (ascending positive integers) for this element. String
title <p>The advisory title for this element.</p> String
titleKey <p>The message resources key for the advisory title for this element.</p> String
value <p>The value that will be submitted if this image button is pressed.</p> String

<html:img>

<p><strong>Render an HTML img tag</strong></p> <p>Renders an HTML <code>&lt;img&gt;</code> element with the image at the specified URL. Like the link tag, URL rewriting will be applied automatically to the value specified in <code>src</code>, <code>page</code>, or <code>action</code> to maintain session state in the absence of cookies. This will allow dynamic generation of an image where the content displayed for this image will be taken from the attributes of this tag.</p> <p>The base URL for this image is calculated directly based on the value specified in <code>src</code>, <code>page</code>, or <code>action</code> or <code>page</code>, or indirectly by looking up a message resource string based on the <code>srcKey</code> or <code>pageKey</code> attributes. You <strong>must</strong> specify exactly one of these attributes.</p> <p>Normally, the <code>src</code>, <code>page</code>, or <code>action</code> that you specify will be left unchanged (other than URL rewriting if necessary). However, there are two ways you can append one or more dynamically defined query parameters to the <code>src</code> URL -- specify a single parameter with the <code>paramId</code> attribute (at its associated attributes to select the value), or specify the <code>name</code> (and optional <code>property</code>) attributes to select a <code>java.util.Map</code> bean that contains one or more parameter ids and corresponding values.</p> <p>To specify a single parameter, use the <code>paramId</code> attribute to define the name of the request parameter to be submitted. To specify the corresponding value, use one of the following approaches:</p> <ul> <li> <em>Specify only the <code>paramName</code> attribute</em> - The named JSP bean (optionally scoped by the value of the <code>paramScope</code> attribute) must identify a value that can be converted to a String.</li> <li> <em>Specify both the <code>paramName</code> and <code>paramProperty</code> attributes</em> - The specified property getter will be called on the JSP bean identified by the <code>paramName</code> (and optional <code>paramScope</code>) attributes, in order to select a value that can be converted to a String.</li> </ul> <p>If you prefer to specify a <code>java.util.Map</code> that contains all of the request parameters to be added to the hyperlink, use one of the following techniques:</p> <ul> <li> <em>Specify only the <code>name</code> attribute</em> - The named JSP bean (optionally scoped by the value of the <code>scope</code> attribute) must identify a <code>java.util.Map</code> containing the parameters.</li> <li> <em>Specify both <code>name</code> and <code>property</code> attributes</em> - The specified property getter method will be called on the bean identified by the <code>name</code> (and optional <code>scope</code>) attributes, in order to return the <code>java.util.Map</code> containing the parameters.</li> </ul> <p>As the <code>Map</code> is processed, the keys are assumed to be the names of query parameters to be appended to the <code>src</code> URL. The value associated with each key must be either a String or a String array representing the parameter value(s), or an object whose toString() method will be called. If a String array is specified, more than one value for the same query parameter name will be created.</p> <p>You can specify the alternate text for this image (which most browsers display as pop-up text block when the user hovers the mouse over this image) either directly, through the <code>alt</code> attribute, or indirectly from a message resources bundle, using the <code>bundle</code> and <code>altKey</code> attributes.</p>

Can contain: empty

Attributes

NameDescriptionType
action <p>The action, starting with a slash, that will render the image to be displayed by this tag. The rendered URL for this image will automatically prepend the context path of this web application (in the same manner as the <code>action</code> attribute on the link tag works), in addition to any necessary URL rewriting. You <strong>must</strong> specify the <code>action</code>, <code>page</code> attribute or the <code>src</code> attribute.</p> <p>Additionally, you can specify a <code>module</code> prefix for linking to other modules.</p> String
align <p>Where the image is aligned to. Can be one of the following attributes:</p> <ul> <li>left - left justify, wrapping text on right</li> <li>right -right justify, wrapping test on left</li> <li>top - aligns the image with the top of the text on the same row</li> <li>middle - aligns the image's vertical center with the text base line</li> <li>bottom - aligns the image with the bottom of the text's base line</li> <li>texttop - aligns the image's top with that of the text font on the same line</li> <li>absmiddle - aligns the image's vertical center with the absolute center of the text</li> <li>absbottom - aligns the image with the absolute bottom of the text font on the same row</li> </ul> String
alt <p>And alternative text to be displayed in browsers that don't support graphics. Also used often as type of context help over images.</p> String
altKey <p>The message resources key of the alternate text for this element.</p> String
border <p>The width of the border surrounding the image.</p> String
bundle <p>The servlet context attribute key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet.</p> String
dir <p>The direction for weak/neutral text for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
height <p>The height of the image being displayed. This parameter is very nice to specify (along with <code>width</code>) to help the browser render the page faster.</p> String
hspace <p>The amount of horizontal spacing between the icon and the text. The text may be in the same paragraph, or be wrapped around the image.</p> String
imageName <p>The scriptable name to be defined within this page, so that you can reference it with intra-page scripts. In other words, the value specified here will render a "name" element in the generated image tag.</p> String
ismap <p>The name of the server-side map that this image belongs to.</p> String
lang <p>The language code for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
locale <p>The name of the request or session Locale attribute used to look up internationalized messages.</p> String
module <p>Prefix name of a <code>Module</code> that contains the action mapping for the <code>Action</code> that is specified by the <code>action</code> attribute. You <strong>must</strong> specify an <code>action</code> attribute for this to have an effect.</p> <p> <strong>Note: </strong>Use "" to map to the default module.</p> String
name <p>The name of a JSP bean that contains a <code>Map</code> representing the query parameters (if <code>property</code> is not specified), or a JSP bean whose property getter is called to return a <code>Map</code> (if <code>property</code> is specified).</p> String
onclick JavaScript event handler executed when this element receives a mouse click. String
ondblclick JavaScript event handler executed when this element receives a mouse double click. String
onkeydown <p>JavaScript event handler that is executed when this element receives a key down event.</p> String
onkeypress <p>JavaScript event handler that is executed when this element receives a key press event.</p> String
onkeyup <p>JavaScript event handler that is executed when this element receives a key up event.</p> String
onmousedown JavaScript event handler executed when this element is under the mouse pointer and a mouse button is depressed. String
onmousemove JavaScript event handler executed when this element is under the mouse pointer and the pointer is moved. String
onmouseout JavaScript event handler executed when this element was under the mouse pointer but the pointer was moved outside the element. String
onmouseover JavaScript event handler executed when this element was not under the mouse pointer but the pointer is moved inside the element. String
onmouseup JavaScript event handler executed when this element is under the mouse pointer and a mouse button is released. String
page <p>The module-relative path, starting with a slash, of the image to be displayed by this tag. The rendered URL for this image will automatically prepend the context path of this web application (in the same manner as the <code>page</code> attribute on the link tag works), in addition to any necessary URL rewriting. You <strong>must</strong> specify either the <code>page</code> attribute or the <code>src</code> attribute.</p> String
pageKey <p>The message key, in the message resources bundle named by the <code>bundle</code> attribute, of the String to be used as the module-relative path for this image.</p> String
paramId <p>The name of the request parameter that will be dynamically added to the generated src URL. The corresponding value is defined by the <code>paramName</code> and (optional) <code>paramProperty</code> attributes, optionally scoped by the <code>paramScope</code> attribute</p> String
paramName <p>The name of a JSP bean that is a String containing the value for the request parameter named by <code>paramId</code> (if <code>paramProperty</code> is not specified), or a JSP bean whose property getter is called to return a String (if <code>paramProperty</code> is specified). The JSP bean is constrained to the bean scope specified by the <code>paramScope</code> property, if it is specified.</p> String
paramProperty <p>The name of a property of the bean specified by the <code>paramName</code> attribute, whose return value must be a String containing the value of the request parameter (named by the <code>paramId</code> attribute) that will be dynamically added to this src URL.</p> String
paramScope <p>The scope within which to search for the bean specified by the <code>paramName</code> attribute. If not specified, all scopes are searched.</p> String
property <p>The name of a property of the bean specified by the <code>name</code> attribute, whose return value must be a <code>java.util.Map</code> containing the query parameters to be added to the src URL. You <strong>must</strong> specify the <code>name</code> attribute if you specify this attribute.</p> String
scope <p>The scope within which to search for the bean specified by the <code>name</code> attribute. If not specified, all scopes are searched.</p> String
src <p>The URL to which this image will be transferred from This image may be dynamically modified by the inclusion of query parameters, as described in the tag description. This value will be used unmodified (other than potential URL rewriting) as the value of the "src" attribute in the rendered tag. You <strong>must</strong> specify either the <code>page</code> attribute or the <code>src</code> attribute.</p> String
srcKey <p>The message key, in the message resources bundle named by the <code>bundle</code> attribute, of the String to be used as the URL of this image.</p> String
style <p>CSS styles to be applied to this element.</p> String
styleClass CSS stylesheet class to be applied to this HTML element (renders a "class" attribute). String
styleId Identifier to be assigned to this HTML element (renders an "id" attribute). String
title <p>The advisory title for this element.</p> String
titleKey <p>The message resources key for the advisory title for this element.</p> String
useLocalEncoding <p>If set to <code>true</code>, LocalCharacterEncoding will be used, that is, the characterEncoding set to the HttpServletResponse, as prefered character encoding rather than UTF-8, when URLEncoding is done on parameters of the URL.</p> String
usemap <p>The name of the map as defined within this page for mapping hot-spot areas of this image.</p> String
vspace <p>The amount of vertical spacing between the icon and the text, above and below.</p> String
width <p>The width of the image being displayed. This parameter is very nice to specify (along with <code>height</code>) to help the browser render the page faster.</p> String

<html:javascript>

<p><strong> Render JavaScript validation based on the validation rules loaded by the ValidatorPlugIn. </strong></p> <p> Render JavaScript validation based on the validation rules loaded by the <code>ValidatorPlugIn</code>. The set of validation rules that should be generated is based on the formName attribute passed in, which should match the name attribute of the form element in the xml file. </p> <p> The dynamicJavascript and staticJavascript attributes default to true, but if dynamicJavascript is set to <code>true</code> and staticJavascript is set to <code>false</code> then only the dynamic JavaScript will be rendered. If dynamicJavascript is set to <code>false</code> and staticJavascript is set to <code>true</code> then only the static JavaScript will be rendered which can then be put in separate JSP page so the browser can cache the static JavaScript. </p>

Can contain: empty

Attributes

NameDescriptionType
bundle The servlet context attributes key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.7</dd></dl> String
cdata <p> If set to "true" and XHTML has been enabled, the JavaScript will be wrapped in a CDATA section to prevent XML parsing. The default is "true" to comply with the W3C's recommendation. </p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.1</dd></dl> String
dynamicJavascript <p> Whether or not to render the dynamic JavaScript. Defaults to <code>true</code>. </p> String
formName <p> The key (form name) to retrieve a specific set of validation rules. If "dynamicJavascript" is set to <code>true</code> and formName is missing or is not recognized by the <code>ValidatorPlugIn</code>, a JspException will be thrown. </p> String
htmlComment <p> Whether or not to enclose the javascript with HTML comments. This attribute is ignored in XHTML mode because the script would be deleted by the XML parser. See the cdata attribute for details on hiding scripts from XML parsers. Defaults to <code>true</code>. </p> String
method <p> The alternate JavaScript method name to be used instead of the of the default. The default is 'validate' concatenated in front of the key (form name) passed in (ex: validateRegistrationForm). </p> String
page <p> The current page of a set of validation rules if the page attribute for the field element in the xml file is in use. </p> String
scriptLanguage <p>The <code>&lt;script&gt;</code> element will not contain a language attribute when this is set to false. The default is true but this property is ignored in XHTML mode.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2</dd></dl> String
src <p> The src attribute's value when defining the html script element. </p> String
staticJavascript <p> Whether or not to render the static JavaScript. Defaults to <code>true</code>. </p> String

<html:link>

<p><strong>Render an HTML anchor or hyperlink</strong></p> <p>Renders an HTML <code>&lt;a&gt;</code> element as an anchor definition (if "linkName" is specified) or as a hyperlink to the specified URL. URL rewriting will be applied automatically, to maintain session state in the absence of cookies. The content displayed for this hyperlink will be taken from the body of this tag.</p> <p>The base URL for this hyperlink is calculated based on which of the following attributes you specify (you must specify exactly one of them):</p> <ul> <li> <em>forward</em> - Use the value of this attribute as the name of a global <code>ActionForward</code> to be looked up, and use the module-relative or context-relative URI found there. If the forward is module-relative then it must point to an action and NOT to a page.</li> <li> <em>action</em> - Use the value of this attribute as the name of a <code>Action</code> to be looked up, and use the module-relative or context-relative URI found there.</li> <li> <em>href</em> - Use the value of this attribute unchanged. </li> <li> <em>page</em> - Use the value of this attribute as a module-relative URI, and generate a server-relative URI by including the context path and module prefix.</li> </ul> <p>Normally, the hyperlink you specify with one of the attributes described in the previous paragraph will be left unchanged (other than URL rewriting if necessary). However, there are two ways you can append one or more dynamically defined query parameters to the hyperlink -- specify a single parameter with the <code>paramId</code> attribute (and its associated attributes to select the value), or specify the <code>name</code> (and optional <code>property</code>) attributes to select a <code>java.util.Map</code> bean that contains one or more parameter ids and corresponding values. </p> <p>To specify a single parameter, use the <code>paramId</code> attribute to define the name of the request parameter to be submitted. To specify the corresponding value, use one of the following approaches:</p> <ul> <li> <em>Specify only the <code>paramName</code> attribute</em> - The named JSP bean (optionally scoped by the value of the <code>paramScope</code> attribute) must identify a value that can be converted to a String.</li> <li> <em>Specify both the <code>paramName</code> and <code>paramProperty</code> attributes</em> - The specified property getter method will be called on the JSP bean identified by the <code>paramName</code> (and optional <code>paramScope</code>) attributes, in order to select a value that can be converted to a String.</li> </ul> <p>If you prefer to specify a <code>java.util.Map</code> that contains all of the request parameters to be added to the hyperlink, use one of the following techniques:</p> <ul> <li> <em>Specify only the <code>name</code> attribute</em> - The named JSP bean (optionally scoped by the value of the <code>scope</code> attribute) must identify a <code>java.util.Map</code> containing the parameters.</li> <li> <em>Specify both <code>name</code> and <code>property</code> attributes</em> - The specified property getter method will be called on the bean identified by the <code>name</code> (and optional <code>scope</code>) attributes, in order to return the <code>java.util.Map</code> containing the parameters.</li> </ul> <p>As the <code>Map</code> is processed, the keys are assumed to be the names of query parameters to be appended to the hyperlink. The value associated with each key must be either a String or a String array representing the parameter value(s), or an object whose toString() method will be called. If a String array is specified, more than one value for the same query parameter name will be created.</p> <p>Additionally, you can request that the current transaction control token, if any, be included in the generated hyperlink by setting the <code>transaction</code> attribute to <code>true</code>. You can also request that an anchor ("#xxx") be added to the end of the URL that is created by any of the above mechanisms, by using the <code>anchor</code> attribute.</p>

Can contain: JSP

Attributes

NameDescriptionType
accesskey <p>The keyboard character used to move focus immediately to this element.</p> String
action <p>Logical name of a <code>Action</code> that contains the actual content-relative URI of the destination of this transfer. This hyperlink may be dynamically modified by the inclusion of query parameters, as described in the tag description. You <strong>must</strong> specify exactly one of the <code>action</code> attribute, the <code>forward</code> attribute, the <code>href</code> attribute, the <code>linkName</code> attribute, or the <code>page</code> attribute.</p> <p>Additionally, you can specify a <code>module</code> prefix for linking to other modules.</p> String
anchor <p>Optional anchor tag ("#xxx") to be added to the generated hyperlink. Specify this value <strong>without</strong> any "#" character.</p> String
bundle The servlet context attributes key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
dir <p>The direction for weak/neutral text for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
forward <p>Logical name of a global <code>ActionForward</code> that contains the actual content-relative URI of the destination of this transfer. This hyperlink may be dynamically modified by the inclusion of query parameters, as described in the tag description. You <strong>must</strong> specify exactly one of the <code>action</code> attribute, the <code>forward</code> attribute, the <code>href</code> attribute, the <code>linkName</code> attribute, or the <code>page</code> attribute.</p> String
href <p>The URL to which this hyperlink will transfer control if activated. This hyperlink may be dynamically modified by the inclusion of query parameters, as described in the tag description. You <strong>must</strong> specify exactly one of the <code>action</code> attribute, the <code>forward</code> attribute, the <code>href</code> attribute, the <code>linkName</code> attribute, or the <code>page</code> attribute.</p> String
indexId By this attribute different name for the indexed parameter can be specified. Take a look to the "indexed" attribute for details. String
indexed Valid only inside of <code>logic-el:iterate</code> <code>c:forEach</code> <code>true</code> String
lang <p>The language code for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
linkName <p>The anchor name to be defined within this page, so that you can reference it with intra-page hyperlinks. In other words, the value specified here will render a "name" element in the generated anchor tag.</p> String
module <p>Prefix name of a <code>Module</code> that contains the action mapping for the <code>Action</code> that is specified by the <code>action</code> attribute. You <strong>must</strong> specify an <code>action</code> attribute for this to have an effect.</p> <p> <strong>Note: </strong>Use "" to map to the default module.</p> String
name <p>The name of a JSP bean that contains a <code>Map</code> representing the query parameters (if <code>property</code> is not specified), or a JSP bean whose property getter is called to return a <code>Map</code> (if <code>property</code> is specified).</p> String
onblur <p>JavaScript event handler that is executed when this element loses input focus.</p> String
onclick <p>JavaScript event handler that is executed when this element receives a mouse click.</p> String
ondblclick <p>JavaScript event handler that is executed when this element receives a mouse double click.</p> String
onfocus <p>JavaScript event handler that is executed when this element receives input focus.</p> String
onkeydown <p>JavaScript event handler that is executed when this element receives a key down event.</p> String
onkeypress <p>JavaScript event handler that is executed when this element receives a key press event.</p> String
onkeyup <p>JavaScript event handler that is executed when this element receives a key up event.</p> String
onmousedown <p>JavaScript event handler that is executed when this element receives a mouse down event.</p> String
onmousemove <p>JavaScript event handler that is executed when this element receives a mouse move event.</p> String
onmouseout <p>JavaScript event handler that is executed when this element receives a mouse out event.</p> String
onmouseover <p>JavaScript event handler that is executed when this element receives a mouse over event.</p> String
onmouseup <p>JavaScript event handler that is executed when this element receives a mouse up event.</p> String
page <p>The module-relative path (beginning with a "/" character) to which this hyperlink will transfer control if activated. This hyperlink may be dynamically modified by the inclusion of query parameters, as described in the tag description. You <strong>must</strong> specify exactly one of the <code>action</code> attribute, <code>forward</code> attribute, the <code>href</code> attribute, the <code>linkName</code> attribute, or the <code>page</code> attribute.</p> String
paramId <p>The name of the request parameter that will be dynamically added to the generated hyperlink. The corresponding value is defined by the <code>paramName</code> and (optional) <code>paramProperty</code> attributes, optionally scoped by the <code>paramScope</code> attribute</p> String
paramName <p>The name of a JSP bean that is a String containing the value for the request parameter named by <code>paramId</code> (if <code>paramProperty</code> is not specified), or a JSP bean whose property getter is called to return a String (if <code>paramProperty</code> is specified). The JSP bean is constrained to the bean scope specified by the <code>paramScope</code> property, if it is specified.</p> String
paramProperty <p>The name of a property of the bean specified by the <code>paramName</code> attribute, whose return value must be a String containing the value of the request parameter (named by the <code>paramId</code> attribute) that will be dynamically added to this hyperlink.</p> String
paramScope <p>The scope within which to search for the bean specified by the <code>paramName</code> attribute. If not specified, all scopes are searched.</p> String
property <p>The name of a property of the bean specified by the <code>name</code> attribute, whose return value must be a <code>java.util.Map</code> containing the query parameters to be added to the hyperlink. You <strong>must</strong> specify the <code>name</code> attribute if you specify this attribute.</p> String
scope <p>The scope within which to search for the bean specified by the <code>name</code> attribute. If not specified, all scopes are searched.</p> String
style <p>CSS styles to be applied to this element.</p> String
styleClass CSS stylesheet class to be applied to this HTML element (renders a "class" attribute). String
styleId Identifier to be assigned to this HTML element (renders an "id" attribute). String
tabindex <p>The tab order (ascending positive integers) for this element.</p> String
target <p>The window target in which the resource requested by this hyperlink will be displayed, for example in a framed presentation.</p> String
title <p>The advisory title for this hyperlink.</p> String
titleKey <p>The message resources key for the advisory title for this element.</p> String
transaction <p>If set to <code>true</code>, any current transaction control token will be included in the generated hyperlink, so that it will pass an <code>isTokenValid()</code> test in the receiving Action.</p> String
useLocalEncoding <p>If set to <code>true</code>, LocalCharacterEncoding will be used, that is, the characterEncoding set to the HttpServletResponse, as prefered character encoding rather than UTF-8, when URLEncoding is done on parameters of the URL.</p> String

<html:messages>

<p><strong> Conditionally display a set of accumulated messages. </strong></p> <p>Displays a set of messages prepared by a business logic component and stored as an <code>ActionMessages</code> object, <code>ActionErrors</code> object, a String, or a String array in any scope. If such a bean is not found, nothing will be rendered.</p> <p>In order to use this tag successfully, you must have defined an application scope <code>MessageResources</code> bean under the default attribute name.</p>

Can contain: JSP

Attributes

NameDescriptionType
bundle The servlet context attribute key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet. String
footer This value is an optional message resource key that will be printed after the iteration of messages has finished. String
header This value is an optional message resource key that will be printed before the iteration of messages begins. String
id* The name of a page scope JSP bean that will contain the current element of the collection of messages on each iteration, if it is not <code>null</code> String
locale The session attribute key for the Locale used to select messages to be displayed. If not specified, defaults to the Struts standard value. String
message By default the tag will retrieve the bean it will iterate over from the <code>Globals.ERROR_KEY</code> <code>Globals.MESSAGE_KEY</code> String
name Name of the bean in any scope under which our messages have been stored. If not present, the name specified by the <code>Globals.ERROR_KEY</code> String
property Name of the property for which messages should be displayed. If not specified, all messages (regardless of property) are displayed. String

<html:multibox>

<p><strong> Render A Checkbox Input Field </strong></p> <p>Renders an HTML <code>&lt;input&gt;</code> element of type <code>checkbox</code>, whose "checked" status is initialized based on whether the specified value matches one of the elements of the underlying property's array of current values. This element is useful when you have large numbers of checkboxes, and prefer to combine the values into a single array-valued property instead of multiple boolean properties. This tag is only valid when nested inside a form tag body.</p> <p> <strong>WARNING</strong>: In order to correctly recognize cases where none of the associated checkboxes are selected, the <code>ActionForm</code> bean associated with this form must include a statement setting the corresponding array to zero length in the <code>reset()</code> method.</p> <p>The value to be returned to the server, if this checkbox is selected, must be defined by one of the following methods:</p> <ul> <li>Specify a <code>value</code> attribute, whose contents will be used literally as the value to be returned.</li> <li>Specify no <code>value</code> attribute, and the nested body content of this tag will be used as the value to be returned.</li> </ul>

Can contain:

Attributes

NameDescriptionType
accesskey The keyboard character used to move focus immediately to this element. String
alt <p>The alternate text for this element.</p> String
altKey <p>The message resources key of the alternate text for this element.</p> String
bundle The servlet context attributes key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
disabled Set to <code>true</code> String
errorKey <p>Name of the bean (in any scope) under which our error messages have been stored. If not present, the name specified by the <code>Globals.ERROR_KEY</code> constant string will be used.</p> <p> <strong>N.B.</strong> This is used in conjunction with the <code>errorStyle</code>, <code>errorStyleClass</code> and <code>errorStyleId</code> attributes and should be set to the same value as the <code>name</code> attribute on the <code>&lt;html:errors/&gt;</code> tag.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyle <p>CSS styles to be applied to this HTML element if an error exists for it.</p> <p> <strong>N.B.</strong> If present, this overrides the <code>style</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyleClass <p>CSS stylesheet class to be applied to this HTML element if an error exists for it (renders a "class" attribute).</p> <p> <strong>N.B.</strong> If present, this overrides the <code>styleClass</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyleId <p>Identifier to be assigned to this HTML element if an error exists for it (renders an "id" attribute).</p> <p> <strong>N.B.</strong> If present, this overrides the <code>styleId</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
name The attribute name of the bean whose properties are consulted when rendering the current value of this input field. If not specified, the bean associated with the form tag we are nested within is utilized. String
onblur JavaScript event handler executed when this element loses input focus. String
onchange JavaScript event handler executed when this element loses input focus and its value has changed. String
onclick JavaScript event handler executed when this element receives a mouse click. String
ondblclick JavaScript event handler executed when this element receives a mouse double click. String
onfocus JavaScript event handler executed when this element receives input focus. String
onkeydown JavaScript event handler executed when this element has focus and a key is depressed. String
onkeypress JavaScript event handler executed when this element has focus and a key is depressed and released. String
onkeyup JavaScript event handler executed when this element has focus and a key is released. String
onmousedown JavaScript event handler executed when this element is under the mouse pointer and a mouse button is depressed. String
onmousemove JavaScript event handler executed when this element is under the mouse pointer and the pointer is moved. String
onmouseout JavaScript event handler executed when this element was under the mouse pointer but the pointer was moved outside the element. String
onmouseover JavaScript event handler executed when this element was not under the mouse pointer but the pointer is moved inside the element. String
onmouseup JavaScript event handler executed when this element is under the mouse pointer and a mouse button is released. String
property* Name of the request parameter that will be included with this submission, set to the specified value. String
style <p>CSS styles to be applied to this HTML element.</p> <p> <strong>N.B.</strong> If present, the <code>errorStyle</code> overrides this attribute in the event of an error for the element.</p> String
styleClass <p>CSS stylesheet class to be applied to this HTML element (renders a "class" attribute).</p> <p> <strong>N.B.</strong> If present, the <code>errorStyleClass</code> overrides this attribute in the event of an error for the element.</p> String
styleId <p>Identifier to be assigned to this HTML element (renders an "id" attribute).</p> <p> <strong>N.B.</strong> If present, the <code>errorStyleId</code> overrides this attribute in the event of an error for the element.</p> String
tabindex The tab order (ascending positive integers) for this element. String
title <p>The advisory title for this element.</p> String
titleKey <p>The message resources key for the advisory title for this element.</p> String
value The value to be transmitted if this checkbox is checked when the form is submitted. String

<html:option>

<p><strong> Render A Select Option </strong></p> <p>Render an HTML <code>&lt;option&gt;</code> element, representing one of the choices for an enclosing <code>&lt;select&gt;</code> element. The text displayed to the user comes from either the body of this tag, or from a message string looked up based on the <code>bundle</code>, <code>locale</code>, and <code>key</code> attributes.</p> <p>If the value of the corresponding bean property matches the specified value, this option will be marked selected. This tag is only valid when nested inside a <code>&lt;html:select&gt;</code> tag body.</p>

Can contain:

Attributes

NameDescriptionType
bundle The servlet context attributes key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet. String
dir <p>The direction for weak/neutral text for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
disabled Set to <code>true</code> String
filter Set to <code>true</code> if you want the option label to be filtered for sensitive characters in HTML. By default, such a value is NOT filtered. boolean
key If specified, defines the message key to be looked up in the resource bundle specified by <code>bundle</code> String
lang <p>The language code for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
locale The session attributes key for the Locale instance to use for looking up the message specified by the <code>key</code> String
style CSS styles to be applied to this HTML element. String
styleClass CSS stylesheet class to be applied to this HTML element (renders a "class" attribute). String
styleId Identifier to be assigned to this HTML element (renders an "id" attribute). String
value* Value to be submitted for this field if this option is selected by the user. String

<html:options>

<p><strong> Render a Collection of Select Options </strong></p> <p>Renders a set of HTML <code>&lt;option&gt;</code> elements, representing possible choices for a <code>&lt;select&gt;</code> element. This tag can be used multiple times within a single <code>&lt;html:select&gt;</code> element, either in conjunction with or instead of one or more <code>&lt;html:option&gt;</code> or <code>&lt;html:optionsCollection&gt;</code> elements.</p> <p>This tag operates in one of two major modes, depending on whether or not the <code>collection</code> attribute is specified. If the <code>collection</code> attribute is included, the following rules apply:</p> <ul> <li>The <strong>collection</strong> attribute is interpreted as the name of a JSP bean, in some scope, that itself represents a collection of individual beans, one per option value to be rendered.</li> <li>The <strong>property</strong> attribute is interpreted as the name of a property of the individual beans included in the collection, and is used to retrieve the value that will be returned to the server if this option is selected.</li> <li>The <strong>labelProperty</strong> attribute is interpreted as the name of a property of the individual beans included in the collection, and is used to retrieve the label that will be displayed to the user for this option. If the <code>labelProperty</code> attribute is not specified, the property named by the <code>property</code> attribute will be used to select both the value returned to the server and the label displayed to the user for this option.</li> </ul> <p>If the <code>collection</code> attribute is not specified, the rules described in the remainder of this section apply.</p> <p>The collection of values actually selected depends on the presence or absence of the <code>name</code> and <code>property</code> attributes. The following combinations are allowed:</p> <ul> <li> <em>Only <code>name</code> is specified</em> - The value of this attribute is the name of a JSP bean in some scope that is the collection.</li> <li> <em>Only <code>property</code> is specified</em> - The value of this attribute is the name of a property of the ActionForm bean associated with our form, which will return the collection.</li> <li> <em>Both <code>name</code> and <code>property</code> are specified</em> - The value of the <code>name</code> attribute identifies a JSP bean in some scope. The value of the <code>property</code> attribute is the name of some property of that bean which will return the collection.</li> </ul> <p>The collection of labels displayed to the user can be the same as the option values themselves, or can be different, depending on the presence or absence of the <code>labelName</code> and <code>labelProperty</code> attributes. If this feature is used, the collection of labels must contain the same number of elements as the corresponding collection of values. The following combinations are allowed:</p> <ul> <li> <em>Neither <code>labelName</code> nor <code>labelProperty</code> is specified</em> - The labels will be the same as the option values themselves.</li> <li> <em>Only <code>labelName</code> is specified</em> - The value of this attribute is the name of a JSP bean in some scope that is the collection.</li> <li> <em>Only <code>labelProperty</code> is specified</em> - The value of this attribute is the name of a property of the ActionForm bean associated with our form, which will return the collection.</li> <li> <em>Both <code>labelName</code> and <code>labelProperty</code> are specified</em> - The value of the <code>labelName</code> attribute identifies a JSP bean in some scope. The value of the <code>labelProperty</code> attribute is the name of some property of that bean which will return the collection.</li> </ul> <p>Note that this tag does not support a <code>styleId</code> attribute, as it would have to apply the value to all the <code>option</code> elements created by this element, which would mean that more than one <code>id</code> element might have the same value, which the HTML specification says is illegal.</p>

Can contain: empty

Attributes

NameDescriptionType
collection Name of the JSP bean (in some scope) which is itself a Collection of other beans, each of which has properties named by the "property" and "labelProperty" attributes that are used to retrieve the value and label for each option, respectively. String
filter Set to <code>false</code> String
labelName Name of the JSP bean (in some scope) containing the collection of labels to be displayed to the user for these options. String
labelProperty Property of the form bean, or the bean specified by the labelName attribute, that will return the collection of labels to be displayed to the user for these options. String
name Name of the JSP bean (in some scope) containing the collection of values to be returned to the server for these options. If not specified, the form bean associated with our form is assumed. String
property Property of the form bean, or the bean specified by the name attribute, that will return the collection of values to returned to the server for these options. String
style CSS styles to be applied to this HTML element. String
styleClass CSS stylesheet class to be applied to this HTML element (renders a "class" attribute). String

<html:optionsCollection>

<p><strong> Render a Collection of Select Options </strong></p> <p>Renders a set of HTML <code>&lt;option&gt;</code> elements, representing possible choices for a <code>&lt;select&gt;</code> element. This tag can be used multiple times within a single <code>&lt;html:select&gt;</code> element, either in conjunction with or instead of one or more <code>&lt;html:option&gt;</code> or <code>&lt;html:options&gt;</code> elements.</p> <p>This tag operates on a collection of beans, where each bean has a <strong>label</strong> property and a <strong>value</strong> property. The actual names of these properties can be configured using the <code>label</code> and <code>value</code> attributes of this tag.</p> <p>This tag differs from the <code>&lt;html:options&gt;</code> tag in that it makes more consistent use of the <code>name</code> and <code>property</code> attributes, and allows the collection to be more easily obtained from the enclosing form bean.</p> <p>Note that this tag does not support a <code>styleId</code> attribute, as it would have to apply the value to all the <code>option</code> elements created by this element, which would mean that more than one <code>id</code> element might have the same value, which the HTML specification says is illegal.</p>

Can contain: empty

Attributes

NameDescriptionType
filter Set to <code>false</code> String
label The property of the bean within the collection which represents the label to be rendered for each option. Defaults to "label". String
name The attribute name of the bean whose properties are consulted when rendering the current value of this input field. If not specified, the bean associated with the form tag we are nested within is utilized. String
property The property of the form bean, or the bean specified by the name attribute, that will return the collection of objects to be rendered for these options. String
style CSS styles to be applied to this HTML element. String
styleClass CSS stylesheet class to be applied to this HTML element (renders a "class" attribute). String
value The property of the bean within the collection which represents the value to be rendered for each option. Defaults to "value". String

<html:param>

<p>Adds a parameter to the following tags: <ol> <li><a href="#frame">&lt;html:frame&gt;</li> <li><a href="#link">&lt;html:link&gt;</li> <li><a href="#rewrite">&lt;html:rewrite&gt;</li> </ol> </p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl>

Can contain:

Attributes

NameDescriptionType
name* <p>The String containing the name of the request parameter.</p> String
value <p>The value of the request parameter specified by the <code>name</code> attribute, whose return value must be a String or String[] that will be dynamically added to this hyperlink.</p> String

<html:password>

<p><strong> Render A Password Input Field </strong></p> Renders an HTML <code>&lt;input&gt;</code> element of type password, populated from the specified value or the specified property of the bean associated with our current form. This tag is only valid when nested inside a form tag body.

Can contain:

Attributes

NameDescriptionType
accesskey The keyboard character used to move focus immediately to this element. String
alt <p>The alternate text for this element.</p> String
altKey <p>The message resources key of the alternate text for this element.</p> String
bundle The servlet context attributes key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
dir <p>The direction for weak/neutral text for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
disabled Set to <code>true</code> String
errorKey <p>Name of the bean (in any scope) under which our error messages have been stored. If not present, the name specified by the <code>Globals.ERROR_KEY</code> constant string will be used.</p> <p> <strong>N.B.</strong> This is used in conjunction with the <code>errorStyle</code>, <code>errorStyleClass</code> and <code>errorStyleId</code> attributes and should be set to the same value as the <code>name</code> attribute on the <code>&lt;html:errors/&gt;</code> tag.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyle <p>CSS styles to be applied to this HTML element if an error exists for it.</p> <p> <strong>N.B.</strong> If present, this overrides the <code>style</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyleClass <p>CSS stylesheet class to be applied to this HTML element if an error exists for it (renders a "class" attribute).</p> <p> <strong>N.B.</strong> If present, this overrides the <code>styleClass</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyleId <p>Identifier to be assigned to this HTML element if an error exists for it (renders an "id" attribute).</p> <p> <strong>N.B.</strong> If present, this overrides the <code>styleId</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
indexed Valid only inside of <code>logic-el:iterate</code> <code>c:forEach</code> <code>true</code> String
lang <p>The language code for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
maxlength Maximum number of input characters to accept. [No limit] String
name The attribute name of the bean whose properties are consulted when rendering the current value of this input field. If not specified, the bean associated with the form tag we are nested within is utilized. String
onblur JavaScript event handler executed when this element loses input focus. String
onchange JavaScript event handler executed when this element loses input focus and its value has changed. String
onclick JavaScript event handler executed when this element receives a mouse click. String
ondblclick JavaScript event handler executed when this element receives a mouse double click. String
onfocus JavaScript event handler executed when this element receives input focus. String
onkeydown JavaScript event handler executed when this element has focus and a key is depressed. String
onkeypress JavaScript event handler executed when this element has focus and a key is depressed and released. String
onkeyup JavaScript event handler executed when this element has focus and a key is released. String
onmousedown JavaScript event handler executed when this element is under the mouse pointer and a mouse button is depressed. String
onmousemove JavaScript event handler executed when this element is under the mouse pointer and the pointer is moved. String
onmouseout JavaScript event handler executed when this element was under the mouse pointer but the pointer was moved outside the element. String
onmouseover JavaScript event handler executed when this element was not under the mouse pointer but the pointer is moved inside the element. String
onmouseup JavaScript event handler executed when this element is under the mouse pointer and a mouse button is released. String
property* Name of the request parameter that will be included with this submission, set to the specified value. String
readonly Set to <code>true</code> if this input field should be read only. String
redisplay Boolean flag indicating whether or not existing values will be redisplayed if they exist. Even though the redisplayed value will be shown as asterisks on the visible HTML page, the cleartext of the actual password value will be visible though the "Show Page Source" menu option of the client browser. You may wish to set this value to <code>false</code> <code>true</code> String
size Number of character positions to allocate. [Browser default] String
style <p>CSS styles to be applied to this HTML element.</p> <p> <strong>N.B.</strong> If present, the <code>errorStyle</code> overrides this attribute in the event of an error for the element.</p> String
styleClass <p>CSS stylesheet class to be applied to this HTML element (renders a "class" attribute).</p> <p> <strong>N.B.</strong> If present, the <code>errorStyleClass</code> overrides this attribute in the event of an error for the element.</p> String
styleId <p>Identifier to be assigned to this HTML element (renders an "id" attribute).</p> <p> <strong>N.B.</strong> If present, the <code>errorStyleId</code> overrides this attribute in the event of an error for the element.</p> String
tabindex The tab order (ascending positive integers) for this element. String
title <p>The advisory title for this element.</p> String
titleKey <p>The message resources key for the advisory title for this element.</p> String
value Value of the label to be placed on this button. This value will also be submitted as the value of the specified request parameter. [Body of this tag (if any)] String

<html:radio>

<p><strong> Render A Radio Button Input Field </strong></p> <p> Renders an HTML <code>&lt;input&gt;</code> element of type radio, populated from the specified property of the bean associated with our current form. This tag is only valid when nested inside a form tag body. </p> <p> If an iterator is used to render a series of radio tags, the idName attribute may be used to specify the name of the bean exposed by the iterator. In this case, the value attribute is used as the name of a property on the idName bean that returns the value of the radio tag in this iteration. </p>

Can contain:

Attributes

NameDescriptionType
accesskey The keyboard character used to move focus immediately to this element. String
alt <p>The alternate text for this element.</p> String
altKey <p>The message resources key of the alternate text for this element.</p> String
bundle The servlet context attributes key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
dir <p>The direction for weak/neutral text for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
disabled Set to <code>true</code> String
errorKey <p>Name of the bean (in any scope) under which our error messages have been stored. If not present, the name specified by the <code>Globals.ERROR_KEY</code> constant string will be used.</p> <p> <strong>N.B.</strong> This is used in conjunction with the <code>errorStyle</code>, <code>errorStyleClass</code> and <code>errorStyleId</code> attributes and should be set to the same value as the <code>name</code> attribute on the <code>&lt;html:errors/&gt;</code> tag.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyle <p>CSS styles to be applied to this HTML element if an error exists for it.</p> <p> <strong>N.B.</strong> If present, this overrides the <code>style</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyleClass <p>CSS stylesheet class to be applied to this HTML element if an error exists for it (renders a "class" attribute).</p> <p> <strong>N.B.</strong> If present, this overrides the <code>styleClass</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyleId <p>Identifier to be assigned to this HTML element if an error exists for it (renders an "id" attribute).</p> <p> <strong>N.B.</strong> If present, this overrides the <code>styleId</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
idName <p>Name of the bean (in some scope) that will return the value of the radio tag. Usually exposed by an iterator. When the idName attribute is present, the value attribute is used as the name of the property on the idName bean that will return the value of the radio tag for this iteration.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.1</dd></dl> String
indexed Valid only inside of <code>logic-el:iterate</code> <code>c:forEach</code> <code>true</code> String
lang <p>The language code for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
name The attribute name of the bean whose properties are consulted when rendering the current value of this input field. If not specified, the bean associated with the form tag we are nested within is utilized. String
onblur JavaScript event handler executed when this element loses input focus. String
onchange JavaScript event handler executed when this element loses input focus and its value has changed. String
onclick JavaScript event handler executed when this element receives a mouse click. String
ondblclick JavaScript event handler executed when this element receives a mouse double click. String
onfocus JavaScript event handler executed when this element receives input focus. String
onkeydown JavaScript event handler executed when this element has focus and a key is depressed. String
onkeypress JavaScript event handler executed when this element has focus and a key is depressed and released. String
onkeyup JavaScript event handler executed when this element has focus and a key is released. String
onmousedown JavaScript event handler executed when this element is under the mouse pointer and a mouse button is depressed. String
onmousemove JavaScript event handler executed when this element is under the mouse pointer and the pointer is moved. String
onmouseout JavaScript event handler executed when this element was under the mouse pointer but the pointer was moved outside the element. String
onmouseover JavaScript event handler executed when this element was not under the mouse pointer but the pointer is moved inside the element. String
onmouseup JavaScript event handler executed when this element is under the mouse pointer and a mouse button is released. String
property* The corresponding bean property for this radio tag. String
style <p>CSS styles to be applied to this HTML element.</p> <p> <strong>N.B.</strong> If present, the <code>errorStyle</code> overrides this attribute in the event of an error for the element.</p> String
styleClass <p>CSS stylesheet class to be applied to this HTML element (renders a "class" attribute).</p> <p> <strong>N.B.</strong> If present, the <code>errorStyleClass</code> overrides this attribute in the event of an error for the element.</p> String
styleId <p>Identifier to be assigned to this HTML element (renders an "id" attribute).</p> <p> <strong>N.B.</strong> If present, the <code>errorStyleId</code> overrides this attribute in the event of an error for the element.</p> String
tabindex The tab order (ascending positive integers) for this element. String
title <p>The advisory title for this element.</p> String
titleKey <p>The message resources key for the advisory title for this element.</p> String
value* The value of the radio tag. String

<html:reset>

<p><strong> Render A Reset Button Input Field </strong></p> Renders an HTML <code>&lt;input&gt;</code> element of type reset.

Can contain:

Attributes

NameDescriptionType
accesskey The keyboard character used to move focus immediately to this element. String
alt <p>The alternate text for this element.</p> String
altKey <p>The message resources key of the alternate text for this element.</p> String
bundle The servlet context attributes key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
dir <p>The direction for weak/neutral text for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
disabled Set to <code>true</code> String
lang <p>The language code for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
onblur JavaScript event handler executed when this element loses input focus. String
onchange JavaScript event handler executed when this element loses input focus and its value has changed. String
onclick JavaScript event handler executed when this element receives a mouse click. String
ondblclick JavaScript event handler executed when this element receives a mouse double click. String
onfocus JavaScript event handler executed when this element receives input focus. String
onkeydown JavaScript event handler executed when this element has focus and a key is depressed. String
onkeypress JavaScript event handler executed when this element has focus and a key is depressed and released. String
onkeyup JavaScript event handler executed when this element has focus and a key is released. String
onmousedown JavaScript event handler executed when this element is under the mouse pointer and a mouse button is depressed. String
onmousemove JavaScript event handler executed when this element is under the mouse pointer and the pointer is moved. String
onmouseout JavaScript event handler executed when this element was under the mouse pointer but the pointer was moved outside the element. String
onmouseover JavaScript event handler executed when this element was not under the mouse pointer but the pointer is moved inside the element. String
onmouseup JavaScript event handler executed when this element is under the mouse pointer and a mouse button is released. String
property Name of the input field that will be generated. String
style CSS styles to be applied to this HTML element. String
styleClass CSS stylesheet class to be applied to this HTML element (renders a "class" attribute). String
styleId Identifier to be assigned to this HTML element (renders an "id" attribute). String
tabindex The tab order (ascending positive integers) for this element. String
title <p>The advisory title for this element.</p> String
titleKey <p>The message resources key for the advisory title for this element.</p> String
value Value of the label to be placed on this button. [Body of this tag (if any), or "Reset"] String

<html:rewrite>

<p><strong>Render an URI</strong></p> <p>Renders a request URI based on exactly the same rules as the <code> <a href="#link">link</a> </code> tag does, but without creating the <code>&lt;a&gt;</code> hyperlink. This value is useful when you want to generate a string constant for use by a JavaScript procedure.</p>

Can contain: JSP

Attributes

NameDescriptionType
action <p>Logical name of a <code>Action</code> that contains the actual content-relative URI of the destination of this transfer. This hyperlink may be dynamically modified by the inclusion of query parameters, as described in the tag description. You <strong>must</strong> specify exactly one of the <code>action</code> attribute, the <code>forward</code> attribute, the <code>href</code> attribute, or the <code>page</code> attribute.</p> <p>Additionally, you can specify a <code>module</code> prefix for linking to other modules.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.0</dd></dl> String
anchor <p>Optional anchor tag ("#xxx") to be added to the generated hyperlink. Specify this value <strong>without</strong> any "#" character.</p> String
forward <p>Logical name of a global <code>ActionForward</code> that contains the actual content-relative URI of the destination of this transfer. This hyperlink may be dynamically modified by the inclusion of query parameters, as described in the tag description. You <strong>must</strong> specify exactly one of the <code>action</code> attribute, the <code>forward</code> attribute, the <code>href</code> attribute, or the <code>page</code> attribute.</p> String
href <p>The URL to which this hyperlink will transfer control if activated. This hyperlink may be dynamically modified by the inclusion of query parameters, as described in the tag description. You <strong>must</strong> specify exactly one of the <code>action</code> attribute, the <code>forward</code> attribute, the <code>href</code> attribute, or the <code>page</code> attribute.</p> String
module <p>Prefix name of a <code>Module</code> that contains the action mapping for the <code>Action</code> that is specified by the <code>action</code> attribute. You <strong>must</strong> specify an <code>action</code> attribute for this to have an effect.</p> <p> <strong>Note: </strong>Use "" to map to the default module.</p> String
name <p>The name of a JSP bean that contains a <code>Map</code> representing the query parameters (if <code>property</code> is not specified), or a JSP bean whose property getter is called to return a <code>Map</code> (if <code>property</code> is specified).</p> String
page <p>The module-relative path (beginning with a "/" character) to which this hyperlink will transfer control if activated. This hyperlink may be dynamically modified by the inclusion of query parameters, as described in the tag description. You <strong>must</strong> specify exactly one of the <code>action</code> attribute, the <code>forward</code> attribute, the <code>href</code> attribute, or the <code>page</code> attribute.</p> String
paramId <p>The name of the request parameter that will be dynamically added to the generated hyperlink. The corresponding value is defined by the <code>paramName</code> and (optional) <code>paramProperty</code> attributes, optionally scoped by the <code>paramScope</code> attribute</p> String
paramName <p>The name of a JSP bean that is a String containing the value for the request parameter named by <code>paramId</code> (if <code>paramProperty</code> is not specified), or a JSP bean whose property getter is called to return a String (if <code>paramProperty</code> is specified). The JSP bean is constrained to the bean scope specified by the <code>paramScope</code> property, if it is specified.</p> String
paramProperty <p>The name of a property of the bean specified by the <code>paramName</code> attribute, whose return value must be a String containing the value of the request parameter (named by the <code>paramId</code> attribute) that will be dynamically added to this hyperlink.</p> String
paramScope <p>The scope within which to search for the bean specified by the <code>paramName</code> attribute. If not specified, all scopes are searched.</p> String
property <p>The name of a property of the bean specified by the <code>name</code> attribute, whose return value must be a <code>java.util.Map</code> containing the query parameters to be added to the hyperlink. You <strong>must</strong> specify the <code>name</code> attribute if you specify this attribute.</p> String
scope <p>The scope within which to search for the bean specified by the <code>name</code> attribute. If not specified, all scopes are searched.</p> String
transaction <p>If set to <code>true</code>, any current transaction control token will be included in the generated hyperlink, so that it will pass an <code>isTokenValid()</code> test in the receiving Action.</p> String
useLocalEncoding <p>If set to <code>true</code>, LocalCharacterEncoding will be used, that is, the characterEncoding set to the HttpServletResponse, as prefered character encoding rather than UTF-8, when URLEncoding is done on parameters of the URL.</p> String

<html:select>

<p><strong> Render A Select Element </strong></p> <p>Renders an HTML <code>&lt;select&gt;</code> element, associated with a bean property specified by our attributes. This tag is only valid when nested inside a form tag body. </p> <p>This tag operates in two modes, depending upon the state of the <code>multiple</code> attribute, which affects the data type of the associated property you should use:</p> <ul> <li> <em>multiple="true" IS NOT selected</em> - The corresponding property should be a scalar value of any supported data type.</li> <li> <em>multiple="true" IS selected</em> - The corresponding property should be an array of any supported data type.</li> </ul> <p> <strong>WARNING</strong>: In order to correctly recognize cases where no selection at all is made, the <code>ActionForm</code> bean associated with this form must include a statement resetting the scalar property to a default value (if <code>multiple</code> is not set), or the array property to zero length (if <code>multiple</code> is set) in the <code>reset()</code> method.</p>

Can contain: JSP

Attributes

NameDescriptionType
alt <p>The alternate text for this element.</p> String
altKey <p>The message resources key of the alternate text for this element.</p> String
bundle The servlet context attributes key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
dir <p>The direction for weak/neutral text for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
disabled Set to <code>true</code> String
errorKey <p>Name of the bean (in any scope) under which our error messages have been stored. If not present, the name specified by the <code>Globals.ERROR_KEY</code> constant string will be used.</p> <p> <strong>N.B.</strong> This is used in conjunction with the <code>errorStyle</code>, <code>errorStyleClass</code> and <code>errorStyleId</code> attributes and should be set to the same value as the <code>name</code> attribute on the <code>&lt;html:errors/&gt;</code> tag.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyle <p>CSS styles to be applied to this HTML element if an error exists for it.</p> <p> <strong>N.B.</strong> If present, this overrides the <code>style</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyleClass <p>CSS stylesheet class to be applied to this HTML element if an error exists for it (renders a "class" attribute).</p> <p> <strong>N.B.</strong> If present, this overrides the <code>styleClass</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyleId <p>Identifier to be assigned to this HTML element if an error exists for it (renders an "id" attribute).</p> <p> <strong>N.B.</strong> If present, this overrides the <code>styleId</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
indexed Valid only inside of <code>logic-el:iterate</code> <code>c:forEach</code> <code>true</code> String
lang <p>The language code for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
multiple If set to any arbitrary value, the rendered select element will support multiple selections. String
name The attribute name of the bean whose properties are consulted to determine which option should be pre-selected when rendering this input field. If not specified, the bean associated with the enclosing <code>&lt;html:form&gt;</code> String
onblur JavaScript event handler executed when this element loses input focus. String
onchange JavaScript event handler executed when this element loses input focus and its value has changed. String
onclick JavaScript event handler executed when this element receives a mouse click. String
ondblclick JavaScript event handler executed when this element receives a mouse double click. String
onfocus JavaScript event handler executed when this element receives input focus. String
onkeydown JavaScript event handler executed when this element has focus and a key is depressed. String
onkeypress JavaScript event handler executed when this element has focus and a key is depressed and released. String
onkeyup JavaScript event handler executed when this element has focus and a key is released. String
onmousedown JavaScript event handler executed when this element is under the mouse pointer and a mouse button is depressed. String
onmousemove JavaScript event handler executed when this element is under the mouse pointer and the pointer is moved. String
onmouseout JavaScript event handler executed when this element was under the mouse pointer but the pointer was moved outside the element. String
onmouseover JavaScript event handler executed when this element was not under the mouse pointer but the pointer is moved inside the element. String
onmouseup JavaScript event handler executed when this element is under the mouse pointer and a mouse button is released. String
property* Name of the request parameter that will be included with this submission, set to the specified value. String
size The number of available options displayed at one time. String
style <p>CSS styles to be applied to this HTML element.</p> <p> <strong>N.B.</strong> If present, the <code>errorStyle</code> overrides this attribute in the event of an error for the element.</p> String
styleClass <p>CSS stylesheet class to be applied to this HTML element (renders a "class" attribute).</p> <p> <strong>N.B.</strong> If present, the <code>errorStyleClass</code> overrides this attribute in the event of an error for the element.</p> String
styleId <p>Identifier to be assigned to this HTML element (renders an "id" attribute).</p> <p> <strong>N.B.</strong> If present, the <code>errorStyleId</code> overrides this attribute in the event of an error for the element.</p> String
tabindex The tab order (ascending positive integers) for this element. String
title <p>The advisory title for this element.</p> String
titleKey <p>The message resources key for the advisory title for this element.</p> String
value The value to compare with for marking an option selected. String

<html:submit>

<p><strong> Render A Submit Button </strong></p> Renders an HTML <code>&lt;input&gt;</code> element of type <code>submit</code> <p> If a graphical button is needed (a button with an image), then the <a href="#image"><code>image</code></a> tag is more appropriate. </p>

Can contain:

Attributes

NameDescriptionType
accesskey The keyboard character used to move focus immediately to this element. String
alt <p>The alternate text for this element.</p> String
altKey <p>The message resources key of the alternate text for this element.</p> String
bundle The servlet context attributes key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
dir <p>The direction for weak/neutral text for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
disabled Set to <code>true</code> String
indexed Valid only inside of <code>logic-el:iterate</code> <code>c:forEach</code> <code>true</code> String
lang <p>The language code for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
onblur JavaScript event handler executed when this element loses input focus. String
onchange JavaScript event handler executed when this element loses input focus and its value has changed. String
onclick JavaScript event handler executed when this element receives a mouse click. String
ondblclick JavaScript event handler executed when this element receives a mouse double click. String
onfocus JavaScript event handler executed when this element receives input focus. String
onkeydown JavaScript event handler executed when this element has focus and a key is depressed. String
onkeypress JavaScript event handler executed when this element has focus and a key is depressed and released. String
onkeyup JavaScript event handler executed when this element has focus and a key is released. String
onmousedown JavaScript event handler executed when this element is under the mouse pointer and a mouse button is depressed. String
onmousemove JavaScript event handler executed when this element is under the mouse pointer and the pointer is moved. String
onmouseout JavaScript event handler executed when this element was under the mouse pointer but the pointer was moved outside the element. String
onmouseover JavaScript event handler executed when this element was not under the mouse pointer but the pointer is moved inside the element. String
onmouseup JavaScript event handler executed when this element is under the mouse pointer and a mouse button is released. String
property Name of the request parameter that will be included with this submission, set to the specified value. String
style CSS styles to be applied to this HTML element. String
styleClass CSS stylesheet class to be applied to this HTML element (renders a "class" attribute). String
styleId Identifier to be assigned to this HTML element (renders an "id" attribute). String
tabindex The tab order (ascending positive integers) for this element. String
title <p>The advisory title for this element.</p> String
titleKey <p>The message resources key for the advisory title for this element.</p> String
value The value of the button label. String

<html:text>

<p><strong> Render An Input Field of Type text </strong></p> Render an input button of type text. This tag is only valid when nested inside a form tag body.

Can contain:

Attributes

NameDescriptionType
accesskey The keyboard character used to move focus immediately to this element. String
alt <p>The alternate text for this element.</p> String
altKey <p>The message resources key of the alternate text for this element.</p> String
bundle The servlet context attributes key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
dir <p>The direction for weak/neutral text for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
disabled Set to <code>true</code> String
errorKey <p>Name of the bean (in any scope) under which our error messages have been stored. If not present, the name specified by the <code>Globals.ERROR_KEY</code> constant string will be used.</p> <p> <strong>N.B.</strong> This is used in conjunction with the <code>errorStyle</code>, <code>errorStyleClass</code> and <code>errorStyleId</code> attributes and should be set to the same value as the <code>name</code> attribute on the <code>&lt;html:errors/&gt;</code> tag.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyle <p>CSS styles to be applied to this HTML element if an error exists for it.</p> <p> <strong>N.B.</strong> If present, this overrides the <code>style</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyleClass <p>CSS stylesheet class to be applied to this HTML element if an error exists for it (renders a "class" attribute).</p> <p> <strong>N.B.</strong> If present, this overrides the <code>styleClass</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyleId <p>Identifier to be assigned to this HTML element if an error exists for it (renders an "id" attribute).</p> <p> <strong>N.B.</strong> If present, this overrides the <code>styleId</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
indexed Valid only inside of <code>logic-el:iterate</code> <code>c:forEach</code> <code>true</code> String
lang <p>The language code for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
maxlength Maximum number of input characters to accept. [No limit] String
name The attribute name of the bean whose properties are consulted when rendering the current value of this input field. If not specified, the bean associated with the form tag we are nested within is utilized. String
onblur JavaScript event handler executed when this element loses input focus. String
onchange JavaScript event handler executed when this element loses input focus and its value has changed. String
onclick JavaScript event handler executed when this element receives a mouse click. String
ondblclick JavaScript event handler executed when this element receives a mouse double click. String
onfocus JavaScript event handler executed when this element receives input focus. String
onkeydown JavaScript event handler executed when this element has focus and a key is depressed. String
onkeypress JavaScript event handler executed when this element has focus and a key is depressed and released. String
onkeyup JavaScript event handler executed when this element has focus and a key is released. String
onmousedown JavaScript event handler executed when this element is under the mouse pointer and a mouse button is depressed. String
onmousemove JavaScript event handler executed when this element is under the mouse pointer and the pointer is moved. String
onmouseout JavaScript event handler executed when this element was under the mouse pointer but the pointer was moved outside the element. String
onmouseover JavaScript event handler executed when this element was not under the mouse pointer but the pointer is moved inside the element. String
onmouseup JavaScript event handler executed when this element is under the mouse pointer and a mouse button is released. String
onselect JavaScript event handler executed when a when a user selects some text in a text field. String
property* Name of this input field, and the name of the corresponding bean property if value is not specified. The corresponding bean property (if any) must be of type String. String
readonly Set to <code>true</code> if this input field should be read only. String
size Number of character positions to allocate. [Browser default] String
style <p>CSS styles to be applied to this HTML element.</p> <p> <strong>N.B.</strong> If present, the <code>errorStyle</code> overrides this attribute in the event of an error for the element.</p> String
styleClass <p>CSS stylesheet class to be applied to this HTML element (renders a "class" attribute).</p> <p> <strong>N.B.</strong> If present, the <code>errorStyleClass</code> overrides this attribute in the event of an error for the element.</p> String
styleId <p>Identifier to be assigned to this HTML element (renders an "id" attribute).</p> <p> <strong>N.B.</strong> If present, the <code>errorStyleId</code> overrides this attribute in the event of an error for the element.</p> String
tabindex The tab order (ascending positive integers) for this element. String
title <p>The advisory title for this element.</p> String
titleKey <p>The message resources key for the advisory title for this element.</p> String
value Value to which this field should be initialized. [Use the corresponding bean property value] String

<html:textarea>

<p><strong> Render A Textarea </strong></p> Render a textarea element. This tag is only valid when nested inside a form tag body.

Can contain:

Attributes

NameDescriptionType
accesskey The keyboard character used to move focus immediately to this element. String
alt <p>The alternate text for this element.</p> String
altKey <p>The message resources key of the alternate text for this element.</p> String
bundle The servlet context attributes key for the MessageResources instance to use. If not specified, defaults to the application resources configured for our action servlet. <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
cols The number of columns to display. String
dir <p>The direction for weak/neutral text for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
disabled Set to <code>true</code> String
errorKey <p>Name of the bean (in any scope) under which our error messages have been stored. If not present, the name specified by the <code>Globals.ERROR_KEY</code> constant string will be used.</p> <p> <strong>N.B.</strong> This is used in conjunction with the <code>errorStyle</code>, <code>errorStyleClass</code> and <code>errorStyleId</code> attributes and should be set to the same value as the <code>name</code> attribute on the <code>&lt;html:errors/&gt;</code> tag.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyle <p>CSS styles to be applied to this HTML element if an error exists for it.</p> <p> <strong>N.B.</strong> If present, this overrides the <code>style</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyleClass <p>CSS stylesheet class to be applied to this HTML element if an error exists for it (renders a "class" attribute).</p> <p> <strong>N.B.</strong> If present, this overrides the <code>styleClass</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
errorStyleId <p>Identifier to be assigned to this HTML element if an error exists for it (renders an "id" attribute).</p> <p> <strong>N.B.</strong> If present, this overrides the <code>styleId</code> attribute in the event of an error.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.2.5</dd></dl> String
indexed Valid only inside of <code>logic-el:iterate</code> <code>c:forEach</code> <code>true</code> String
lang <p>The language code for this element.</p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.3.6</dd></dl> String
name The attribute name of the bean whose properties are consulted when rendering the current value of this input field. If not specified, the bean associated with the form tag we are nested within is utilized. String
onblur JavaScript event handler executed when this element loses input focus. String
onchange JavaScript event handler executed when this element loses input focus and its value has changed. String
onclick JavaScript event handler executed when this element receives a mouse click. String
ondblclick JavaScript event handler executed when this element receives a mouse double click. String
onfocus JavaScript event handler executed when this element receives input focus. String
onkeydown JavaScript event handler executed when this element has focus and a key is depressed. String
onkeypress JavaScript event handler executed when this element has focus and a key is depressed and released. String
onkeyup JavaScript event handler executed when this element has focus and a key is released. String
onmousedown JavaScript event handler executed when this element is under the mouse pointer and a mouse button is depressed. String
onmousemove JavaScript event handler executed when this element is under the mouse pointer and the pointer is moved. String
onmouseout JavaScript event handler executed when this element was under the mouse pointer but the pointer was moved outside the element. String
onmouseover JavaScript event handler executed when this element was not under the mouse pointer but the pointer is moved inside the element. String
onmouseup JavaScript event handler executed when this element is under the mouse pointer and a mouse button is released. String
onselect JavaScript event handler executed when a when a user selects some text in a text field. String
property* Name of this input field, and the name of the corresponding bean property if value is not specified. The corresponding bean property (if any) must be of type String. String
readonly Set to <code>true</code> if this input field should be read only. String
rows The number of rows to display. String
style <p>CSS styles to be applied to this HTML element.</p> <p> <strong>N.B.</strong> If present, the <code>errorStyle</code> overrides this attribute in the event of an error for the element.</p> String
styleClass <p>CSS stylesheet class to be applied to this HTML element (renders a "class" attribute).</p> <p> <strong>N.B.</strong> If present, the <code>errorStyleClass</code> overrides this attribute in the event of an error for the element.</p> String
styleId <p>Identifier to be assigned to this HTML element (renders an "id" attribute).</p> <p> <strong>N.B.</strong> If present, the <code>errorStyleId</code> overrides this attribute in the event of an error for the element.</p> String
tabindex The tab order (ascending positive integers) for this element. String
title <p>The advisory title for this element.</p> String
titleKey <p>The message resources key for the advisory title for this element.</p> String
value Value to which this field should be initialized. [Use the corresponding bean property value] String

<html:xhtml>

<p><strong>Render HTML tags as XHTML</strong></p> <p> Using this tag in a page tells all other html taglib tags to render themselves as XHTML 1.0. This is useful when composing pages with JSP includes or Tiles. <code>&lt;html:html xhtml="true"&gt;</code> has a similar effect. This tag has no attributes; you use it like this: <code>&lt;html:xhtml/&gt;</code>. </p> <p> <strong>Note</strong>: Included pages do not inherit the rendering style of the including page. Each JSP fragment or Tile must use this tag to render as XHTML. </p>

Can contain: empty

This tag has no attributes.

logic

<p>This tag library contains tags that are useful in managing conditional generation of output text, looping over object collections for repetitive generation of output text, and application flow management.</p> <p>For tags that do value comparisons (equal, greaterEqual, greaterThan, lessEqual, lessThan, notEqual), the following rules apply:</p> <ul> <li>The specified value is examined. If it can be converted successfully to a double or a long, it is assumed that the ultimate comparison will be numeric (either floating point or integer). Otherwise, a String comparison will be performed.</li> <li>The variable to be compared to is retrieved, based on the selector attribute(s) (cookie, header, name, parameter, property) present on this tag. It will be converted to the appropriate type for the comparison, as determined above.</li> <li>If the specified variable or property returns null, it will be coerced to a zero-length string before the comparison occurs.</li> <li>The specific comparison for this tag will be performed, and the nested body content of this tag will be evaluated if the comparison returns a true result.</li> </ul> <p> For tags that do substring matching (match, notMatch), the following rules apply:</p> <ul> <li>The specified variable is retrieved, based on the selector attribute(s) (cookie, header, name, parameter, property) present on this tag.</li> <li>The variable is converted to a String, if necessary.A request time exception will be thrown if the specified variable cannot be retrieved, or has a null value.</li> <li>The specified value is checked for existence as a substring of the variable, in the position specified by the location attribute, as follows: at the beginning (if location is set to start), at the end (if location is set to end), or anywhere (if location is not specified).</li> </ul> <p>Many of the tags in this tag library will throw a JspException at runtime when they are utilized incorrectly (such as when you specify an invalid combination of tag attributes). JSP allows you to declare an "error page" in the &lt;%@ page %&gt; directive. If you wish to process the actual exception that caused the problem, it is passed to the error page as a request attribute under key org.apache.struts.action.EXCEPTION.</p> <p>Struts-logic tags NOT implemented.</p> <p>This library, a derivation of the normal "struts-logic" library, provides the functionality of the Struts logic tags, but assumes the presence of the JavaServer Pages Standard Library (JSTL), and uses the JSTL expression engine (hereafter abbreviated in many places as just "el") to evaluate attribute values instead of using JSP runtime expressions (sometimes called "rtexprvalues").</p> <p>Because it is assumed this library will be used with the JSTL and the new EL engine, there are some tags in the struts-logic library which provide functionality which is entirely subsumed by the JSTL. This section lists each struts-logic tag which is NOT implemented in the struts-logic-el library, and describes the JSTL tag which can be used instead of the Struts tag.Struts-Logic TagJSTL Tag</p> <p><code>&lt;logic:empty&gt;</code></p> <p>This functionality is subsumed by the JSTL &lt;c:if>, &lt;c:when> tags and the empty function in the JSTL EL.</p> <p>Example: &lt;c:if test="${empty var}">CONTENT&lt;/c:if></p>

This is version 1.3.

  • forward Forward control to the page specified by the specified ActionForward entry
  • iterate Repeat the nested body content of this tag over a specified collection
  • match Evaluate the nested body content of this tag if the specified value is an appropriate substring of the requested variable
  • messagesNotPresent Generate the nested body content of this tag if the specified message is not present in this request
  • messagesPresent Generate the nested body content of this tag if the specified message is present in this request
  • notMatch Evaluate the nested body content of this tag if the specified value is not an appropriate substring of the requested variable
  • notPresent Generate the nested body content of this tag if the specified value is not present in this request
  • present Generate the nested body content of this tag if the specified value is present in this request
  • redirect Render an HTTP Redirect Performs an HttpServletResponse
Required attributes are marked with a *

<logic:forward>

<p><strong> Forward control to the page specified by the specified ActionForward entry. </strong></p> <p>Performs a <code>PageContext.forward()</code> or <code>HttpServletResponse.sendRedirect()</code> call for the global <code>ActionForward</code> entry for the specified name. URL rewriting will occur automatically if a redirect is performed.</p>

Can contain: empty

Attributes

NameDescriptionType
name* <p> The logical name of the global <code>ActionForward</code> entry that identifies the destination, and forwarding approach, to be used. <strong>Note</strong>: forwarding to Tiles definitions is not supported from this tag. You should forward to them from an Action subclass. </p> String

<logic:iterate>

<p><strong> Repeat the nested body content of this tag over a specified collection. </strong></p> <p>Repeats the nested body content of this tag once for every element of the specified collection, which must be an <code>Iterator</code>, a <code>Collection</code>, a <code>Map</code> (whose values are to be iterated over), or an array. The collection to be iterated over must be specified in one of the following ways:</p> <ul> <li>As a runtime expression specified as the value of the <code>collection</code> attribute.</li> <li>As a JSP bean specified by the <code>name</code> attribute.</li> <li>As the property, specified by the <code>property</code>, of the JSP bean specified by the <code>name</code> attribute.</li> </ul> <p>The collection to be iterated over MUST conform to one of the following requirements in order for iteration to be successful:</p> <ul> <li>An array of Java objects or primitives.</li> <li>An implementation of <code>java.util.Collection</code>, including <code>ArrayList</code> and <code>Vector</code>.</li> <li>An implementation of <code>java.util.Enumeration</code>.</li> <li>An implementation of <code>java.util.Iterator</code>.</li> <li>An implementation of <code>java.util.Map</code>, including <code>HashMap</code>, <code>Hashtable</code>, and <code>TreeMap</code>. <strong>NOTE</strong> - See below for additional information about accessing Maps.</li> </ul> <p>Normally, each object exposed by the iterate tag is an element of the underlying collection you are iterating over. However, if you iterate over a <code>Map</code>, the exposed object is of type <code>Map.Entry</code> that has two properties:</p> <ul> <li> <code>key</code> - The key under which this item is stored in the underlying Map.</li> <li> <code>value</code> - The value that corresponds to this key.</li> </ul> <p>So, if you wish to iterate over the values of a Hashtable, you would implement code like the following:</p> <code>&lt;logic-el:iterate id="element" name="myhashtable"><br/> Next element is &lt;bean:write name="element" property="value"/><br/> &lt;/logic-el:iterate> </code> <p>If the collection you are iterating over can contain <code>null</code> values, the loop will still be performed but no page scope attribute (named by the <code>id</code> attribute) will be created for that loop iteration. You can use the <code>&lt;logic-el:present;gt;</code> and <code>&lt;logic-el:notPresent&gt;</code> tags to test for this case.</p>

Can contain: JSP

Attributes

NameDescriptionType
collection <p>A runtime expression that evaluates to a collection (conforming to the requirements listed above) to be iterated over.</p> String
id* <p>The name of a page scope JSP bean that will contain the current element of the collection on each iteration, if it is not <code>null</code>.</p> String
indexId <p>The name of a page scope JSP bean that will contain the current index of the collection on each iteration.</p> String
length <p>The maximum number of entries (from the underlying collection) to be iterated through on this page. This can be either an integer that directly expresses the desired value, or the name of a JSP bean (in any scope) of type <code>java.lang.Integer</code> that defines the desired value. If not present, there will be no limit on the number of iterations performed.</p> String
name <p>The name of the JSP bean containing the collection to be iterated (if <code>property</code> is not specified), or the JSP bean whose property getter returns the collection to be iterated (if <code>property</code> is specified).</p> String
offset <p>The zero-relative index of the starting point at which entries from the underlying collection will be iterated through. This can be either an integer that directly expresses the desired value, or the name of a JSP bean (in any scope) of type <code>java.lang.Integer</code> that defines the desired value. If not present, zero is assumed (meaning that the collection will be iterated from the beginning.</p> String
property <p>Name of the property, of the JSP bean specified by <code>name</code>, whose getter returns the collection to be iterated.</p> String
scope <p>The bean scope within which to search for the bean named by the <code>name</code> property, or "any scope" if not specified.</p> String
type <p>Fully qualified Java class name of the element to be exposed through the JSP bean named from the <code>id</code> attribute. If not present, no type conversions will be performed. NOTE: The actual elements of the collection must be assignment-compatible with this class, or a request time ClassCastException will occur.</p> String

<logic:match>

<p><strong> Evaluate the nested body content of this tag if the specified value is an appropriate substring of the requested variable. </strong></p> <p>Matches the variable specified by one of the selector attributes (as a String) against the specified constant value. If the value is a substring (appropriately limited by the <code>location</code> attribute), the nested body content of this tag is evaluated.</p>

Can contain: JSP

Attributes

NameDescriptionType
cookie <p>The variable to be matched is the value of the cookie whose name is specified by this attribute.</p> String
expr <p> A specific value to be compared with, either a static value, or an EL value. </p> String
header <p>The variable to be matched is the value of the header whose name is specified by this attribute. The name match is performed in a case insensitive manner.</p> String
location <p>If not specified, a match between the variable and the value may occur at any position within the variable string. If specified, the match must occur at the specified location (either <code>start</code> or <code>end</code>) of the variable string.</p> String
name <p>The variable to be matched is the JSP bean specified by this attribute, if <code>property</code> is not specified, or the value of the specified property of this bean, if <code>property</code> is specified.</p> String
parameter <p>The variable to be matched is the first, or only, value of the request parameter specified by this attribute.</p> String
property <p>The variable to be matched is the property (of the bean specified by the <code>name</code> attribute) specified by this attribute. The property reference can be simple, nested, and/or indexed.</p> String
scope <p>The bean scope within which to search for the bean named by the <code>name</code> property, or "any scope" if not specified.</p> String
value* <p>The constant value which is checked for existence as a substring of the specified variable.</p> String

<logic:messagesNotPresent>

<p><strong> Generate the nested body content of this tag if the specified message is not present in this request. </strong></p> <p>Evaluates the nested body content of this tag if an <code>ActionMessages</code> object, <code>ActionErrors</code> object, a String, or a String array is not in request scope. If such a bean is not found, nothing will be rendered. </p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.1</dd></dl>

Can contain: JSP

Attributes

NameDescriptionType
message <p>By default the tag will retrieve the request scope bean it will iterate over from the <code>Action.ERROR_KEY</code> constant string, but if this attribute is set to 'true' the request scope bean will be retrieved from the <code>Action.MESSAGE_KEY</code> constant string. Also if this is set to 'true', any value assigned to the name attribute will be ignored. </p> String
name <p>The parameter key to retrieve the message from request scope.</p> String
property <p>Name of the property for which messages should be retrieved. If not specified, all messages (regardless of property) are retrieved. </p> String

<logic:messagesPresent>

<p><strong> Generate the nested body content of this tag if the specified message is present in this request. </strong></p> <p>Evaluates the nested body content of this tag if an <code>ActionMessages</code> object, <code>ActionErrors</code> object, a String, or a String array is in request scope. If such a bean is not found, nothing will be rendered. </p> <dl><dt><b>Since:</b></dt> <dd>Struts 1.1</dd></dl>

Can contain: JSP

Attributes

NameDescriptionType
message <p>By default the tag will retrieve the request scope bean it will iterate over from the <code>Action.ERROR_KEY</code> constant string, but if this attribute is set to 'true' the request scope bean will be retrieved from the <code>Action.MESSAGE_KEY</code> constant string. Also if this is set to 'true', any value assigned to the name attribute will be ignored. </p> String
name <p>The parameter key to retrieve the message from request scope.</p> String
property <p>Name of the property for which messages should be retrieved. If not specified, all messages (regardless of property) are retrieved. </p> String

<logic:notMatch>

<p><strong> Evaluate the nested body content of this tag if the specified value is not an appropriate substring of the requested variable. </strong></p> <p>Matches the variable specified by one of the selector attributes (as a String) against the specified constant value. If the value is not a substring (appropriately limited by the <code>location</code> attribute), the nested body content of this tag is evaluated.</p>

Can contain: JSP

Attributes

NameDescriptionType
cookie <p>The variable to be matched is the value of the cookie whose name is specified by this attribute.</p> String
expr <p> A specific value to be compared with, either a static value, or an EL value. </p> String
header <p>The variable to be matched is the value of the header whose name is specified by this attribute. The name match is performed in a case insensitive manner.</p> String
location <p>If not specified, a match between the variable and the value may occur at any position within the variable string. If specified, the match must occur at the specified location (either <code>start</code> or <code>end</code>) of the variable string.</p> String
name <p>The variable to be matched is the JSP bean specified by this attribute, if <code>property</code> is not specified, or the value of the specified property of this bean, if <code>property</code> is specified.</p> String
parameter <p>The variable to be matched is the first, or only, value of the request parameter specified by this attribute.</p> String
property <p>The variable to be matched is the property (of the bean specified by the <code>name</code> attribute) specified by this attribute. The property reference can be simple, nested, and/or indexed.</p> String
scope <p>The bean scope within which to search for the bean named by the <code>name</code> property, or "any scope" if not specified.</p> String
value* <p>The constant value which is checked for existence as a substring of the specified variable.</p> String

<logic:notPresent>

<p><strong> Generate the nested body content of this tag if the specified value is not present in this request. </strong></p> <p>Depending on which attribute is specified, this tag checks the current request, and evaluates the nested body content of this tag only if the specified value <strong>is not</strong> present. Only one of the attributes may be used in one occurrence of this tag, unless you use the <code>property</code> attribute, in which case the <code>name</code> attribute is also required.</p>

Can contain: JSP

Attributes

NameDescriptionType
cookie <p>Checks for the existence of a cookie with the specified name.</p> String
header <p>Checks for the existence of an HTTP header with the specified name. The name match is performed in a case insensitive manner.</p> String
name <p>Checks for the existence of a JSP bean, in any scope, with the specified name. If <code>property</code> is also specified, checks for a non-null property value for the specified property.</p> String
parameter <p>Checks for the existence of at least one occurrence of the specified request parameter on this request, even if the parameter value is a zero-length string.</p> String
property <p>Checks for the existence of a non-null property value, returned by a property getter method on the JSP bean (in any scope) that is specified by the <code>name</code> attribute. Property references can be simple, nested, and/or indexed.</p> String
role <p>Checks whether the currently authenticated user (if any) has been associated with the specified security role.</p> String
scope <p>The bean scope within which to search for the bean named by the <code>name</code> property, or "any scope" if not specified.</p> String
user <p>Checks whether the currently authenticated user principal has the specified name.</p> String

<logic:present>

<p><strong> Generate the nested body content of this tag if the specified value is present in this request. </strong></p> <p>Depending on which attribute is specified, this tag checks the current request, and evaluates the nested body content of this tag only if the specified value <strong>is</strong> present. Only one of the attributes may be used in one occurrence of this tag, unless you use the <code>property</code> attribute, in which case the <code>name</code> attribute is also required.</p>

Can contain: JSP

Attributes

NameDescriptionType
cookie <p>Checks for the existence of a cookie with the specified name.</p> String
header <p>Checks for the existence of an HTTP header with the specified name. The name match is performed in a case insensitive manner.</p> String
name <p>Checks for the existence of a JSP bean, in any scope, with the specified name. If <code>property</code> is also specified, checks for a non-null property value for the specified property.</p> String
parameter <p>Checks for the existence of at least one occurrence of the specified request parameter on this request, even if the parameter value is a zero-length string.</p> String
property <p>Checks for the existence of a non-null property value, returned by a property getter method on the JSP bean (in any scope) that is specified by the <code>name</code> attribute. Property references can be simple, nested, and/or indexed.</p> String
role <p>Checks whether the currently authenticated user (if any) has been associated with any of the specified security roles. Use a comma-delimited list to check for multiple roles. Example: <code>&lt;logic-el:present role="role1,role2,role3"> code..... &lt;/logic-el:present&gt;</code> </p> String
scope <p>The bean scope within which to search for the bean named by the <code>name</code> property, or "any scope" if not specified.</p> String
user <p>Checks whether the currently authenticated user principal has the specified name.</p> String

<logic:redirect>

<p><strong>Render an HTTP Redirect</strong></p> <p>Performs an <code>HttpServletResponse.sendRedirect()</code> call to the hyperlink specified by the attributes to this tag. URL rewriting will be applied automatically, to maintain session state in the absence of cookies.</p> <p>The base URL for this redirect is calculated based on which of the following attributes you specify (you must specify exactly one of them):</p> <ul> <li> <em>forward</em> - Use the value of this attribute as the name of a global <code>ActionForward</code> to be looked up, and use the module-relative or context-relative URI found there.</li> <li> <em>href</em> - Use the value of this attribute unchanged. </li> <li> <em>page</em> - Use the value of this attribute as an module-relative URI, and generate a server-relative URI by including the context path.</li> </ul> <p>Normally, the redirect you specify with one of the attributes described in the previous paragraph will be left unchanged (other than URL rewriting if necessary). However, there are two ways you can append one or more dynamically defined query parameters to the hyperlink -- specify a single parameter with the <code>paramId</code> attribute (and its associated attributes to select the value), or specify the <code>name</code> (and optional <code>property</code>) attributes to select a <code>java.util.Map</code> bean that contains one or more parameter ids and corresponding values. </p> <p>To specify a single parameter, use the <code>paramId</code> attribute to define the name of the request parameter to be submitted. To specify the corresponding value, use one of the following approaches:</p> <ul> <li> <em>Specify only the <code>paramName</code> attribute</em> - The named JSP bean (optionally scoped by the value of the <code>paramScope</code> attribute) must identify a value that can be converted to a String.</li> <li> <em>Specify both the <code>paramName</code> and <code>paramProperty</code> attributes</em> - The specified property getter method will be called on the JSP bean identified by the <code>paramName</code> (and optional <code>paramScope</code>) attributes, in order to select a value that can be converted to a String.</li> </ul> <p>If you prefer to specify a <code>java.util.Map</code> that contains all of the request parameters to be added to the hyperlink, use one of the following techniques:</p> <ul> <li> <em>Specify only the <code>name</code> attribute</em> - The named JSP bean (optionally scoped by the value of the <code>scope</code> attribute) must identify a <code>java.util.Map</code> containing the parameters.</li> <li> <em>Specify both <code>name</code> and <code>property</code> attributes</em> - The specified property getter method will be called on the bean identified by the <code>name</code> (and optional <code>scope</code>) attributes, in order to return the <code>java.util.Map</code> containing the parameters.</li> </ul> <p>As the <code>Map</code> is processed, the keys are assumed to be the names of query parameters to be appended to the hyperlink. The value associated with each key must be either a String or a String array representing the parameter value(s). If a String array is specified, more than one value for the same query parameter name will be created.</p>

Can contain:

Attributes

NameDescriptionType
action <p>Logical name of a global <code>Action</code> that contains the actual content-relative URI of the destination of this transfer. This hyperlink may be dynamically modified by the inclusion of query parameters, as described in the tag description. You <strong>must</strong> specify exactly one of the <code>action</code> attribute, the <code>forward</code> attribute, the <code>href</code> attribute, or the <code>page</code> attribute.</p> String
anchor <p>Optional anchor tag ("#xxx") to be added to the generated hyperlink. Specify this value <strong>without</strong> any "#" character.</p> String
forward <p>Logical name of a global <code>ActionForward</code> that contains the actual content-relative URI of the destination of this redirect. This URI may be dynamically modified by the inclusion of query parameters, as described in the tag description. You <strong>must</strong> specify exactly one of the <code>forward</code> attribute, the <code>href</code> attribute, the <code>linkName</code> attribute, or the <code>page</code> attribute.</p> String
href <p>The URL to which this redirect will transfer control. This URL may be dynamically modified by the inclusion of query parameters, as described in the tag description. You <strong>must</strong> specify exactly one of the <code>forward</code> attribute, the <code>href</code> attribute, the <code>linkName</code> attribute, or the <code>page</code> attribute.</p> String
name <p>The name of a JSP bean that contains a <code>Map</code> representing the query parameters (if <code>property</code> is not specified), or a JSP bean whose property getter is called to return a <code>Map</code> (if <code>property</code> is specified).</p> String
page <p>The context-relative path (beginning with a "/" character) to which this hyperlink will transfer control if activated. This hyperlink may be dynamically modified by the inclusion of query parameters, as described in the tag description. You <strong>must</strong> specify exactly one of the <code>forward</code> attribute, the <code>href</code> attribute, the <code>linkName</code> attribute, or the <code>page</code> attribute.</p> String
paramId <p>The name of the request parameter that will be dynamically added to the generated hyperlink. The corresponding value is defined by the <code>paramName</code> and (optional) <code>paramProperty</code> attributes, optionally scoped by the <code>paramScope</code> attribute</p> String
paramName <p>The name of a JSP bean that is a String containing the value for the request parameter named by <code>paramId</code> (if <code>paramProperty</code> is not specified), or a JSP bean whose property getter is called to return a String (if <code>paramProperty</code> is specified). The JSP bean is constrained to the bean scope specified by the <code>paramScope</code> property, if it is specified.</p> String
paramProperty <p>The name of a property of the bean specified by the <code>paramName</code> attribute, whose return value must be a String containing the value of the request parameter (named by the <code>paramId</code> attribute) that will be dynamically added to this hyperlink.</p> String
paramScope <p>The scope within which to search for the bean specified by the <code>paramName</code> attribute. If not specified, all scopes are searched.</p> String
property <p>The name of a property of the bean specified by the <code>name</code> attribute, whose return value must be a <code>java.util.Map</code> containing the query parameters to be added to the hyperlink. You <strong>must</strong> specify the <code>name</code> attribute if you specify this attribute.</p> String
scope <p>The scope within which to search for the bean specified by the <code>name</code> attribute. If not specified, all scopes are searched.</p> String
transaction <p>Set to <code>true</code> if you want the current transaction control token included in the generated URL for this redirect.</p> String
useLocalEncoding <p>If set to <code>true</code>, LocalCharacterEncoding will be used, that is, the characterEncoding set to the HttpServletResponse, as prefered character encoding rather than UTF-8, when URLEncoding is done on parameters of the URL.</p> String

tiles

<p>This tag library provides tiles tags. Tiles were previously called Components. For historical reasons, names, pages, components and templates are used indifferently to design a tile. Also, a lot of tags and attribute names are left for backward compatibility. To know more about tags defined in this library, check the associated documentation: tiles-doc.</p>

This is version 1.3.

  • add Add an element to the surrounding list
  • definition Create a tile /component / template definition bean
  • get Gets the content from request scope that was put there by a put tag
  • getAsString Render the value of the specified tile/component/template attribute to the current JspWriter Retrieve the value of the specified tile/component/template attribute property, and render it to the current JspWriter as a String
  • importAttribute Import Tile's attribute in specified context
  • initComponentDefinitions Initialize Tile/Component definitions factory
  • insert Insert a tiles/component/template
  • put Put an attribute into tile/component/template context
  • putList Declare a list that will be pass as attribute to tile
  • useAttribute Use attribute value inside page
Required attributes are marked with a *

<tiles:add>

<p><strong> Add an element to the surrounding list. Equivalent to 'put', but for list element. </strong></p> <p>Add an element to the surrounding list. This tag can only be used inside putList tag. Value can come from a direct assignment (value="aValue") or from a bean. One of 'value' or 'beanName' must be present.</p>

Can contain: JSP

Attributes

NameDescriptionType
beanName <p>Name of the bean used as value. Bean is retrieved from specified context, if any. Otherwise, method pageContext.findAttribute is used. If beanProperty is specified, retrieve value from the corresponding bean property.</p> String
beanProperty <p>Bean property name. If specified, value is retrieved from this property. Supports nested/indexed properties.</p> String
beanScope <p>Scope into which bean is searched. If not specified, method pageContext.findAttribute is used. Scope can be any JSP scope, 'component', or 'template'. In these two later cases, bean is search in tile/component/template context.</p> String
content <p>Element value. Can be a String or Object. Synonym to value. Attribute added for compatibility with JSP Template.</p> String
direct <p>Determines how content is handled: true means content is printed <em>direct</em></p> String
role <p>If the user is in the specified role, the tag is taken into account; otherwise, the tag is ignored (skipped).</p> <p>The role isn't taken into account if <code>&lt;add&gt;</code> tag is used in a definition.</p> String
type <p>Specify content type: string, page, template or instance.</p> <ul> <li>String : Content is printed directly.</li> <li>page | template : Content is included from specified URL. Name is used as an URL.</li> <li>definition : Value denote a definition defined in factory (xml file). Definition will be searched in the inserted tile, in a <code>&lt;insert attribute="attributeName"&gt;</code> tag, where 'attributeName' is the name used for this tag.</li> </ul> String
value <p>Element value. Can be a String or Object.</p> String

<tiles:definition>

<p><strong>Create a tile /component / template definition bean. </strong></p> <p>Create a tile/component/template definition as a bean. Newly created bean will be saved under specified "id", in the requested "scope". Definition tag has same syntax as <code>insert</code></p>

Can contain: JSP

Attributes

NameDescriptionType
extends <p>Name of a parent definition that is used to initialize this new definition. Parent definition is searched in definitions factory.</p> String
id* <p>Specifies the name under which the newly created definition bean will be saved.</p> String
page <p>URL of the template / component to insert. Same as "template".</p> String
role <p>Role to check before inserting this definition. If role is not defined for current user, definition is not inserted. Checking is done at insert time, not during definition process.</p> String
scope <p>Specifies the variable scope into which the newly defined bean will be created. If not specified, the bean will be created in page scope.</p> String
template <p>A string representing the URI of a tile/component/template (a JSP page).</p> String

<tiles:get>

<p><strong>Gets the content from request scope that was put there by a put tag.</strong></p> <p>Retrieve content from tile context and include it.</p> <p>Take into account the 'type' attribute.</p>

Can contain: empty

Attributes

NameDescriptionType
flush <p>True or false. If true, current page out stream is flushed before insertion.</p> String
ignore <p>If this attribute is set to true, and the attribute specified by the name does not exist, simply return without writing anything. The default value is false, which will cause a runtime exception to be thrown.</p> String
name* <p>The name of the content to get from tile/component scope.</p> String
role <p>If the user is in the specified role, the tag is taken into account; otherwise, the tag is ignored (skipped).</p> String

<tiles:getAsString>

<p><strong>Render the value of the specified tile/component/template attribute to the current JspWriter</strong></p> <p>Retrieve the value of the specified tile/component/template attribute property, and render it to the current JspWriter as a String. The usual toString() conversions is applied on found value.</p> <p>Throw a JSPException if named value is not found.</p>

Can contain: empty

Attributes

NameDescriptionType
ignore <p>If this attribute is set to true, and the attribute specified by the name does not exist, simply return without writing anything. The default value is false, which will cause a runtime exception to be thrown.</p> String
name* <p>Attribute name.</p> String
role <p>If the user is in the specified role, the tag is taken into account; otherwise, the tag is ignored (skipped).</p> String

<tiles:importAttribute>

<p><strong>Import Tile's attribute in specified context.</strong></p> <p>Import attribute from tile to requested scope. Attribute name and scope are optional. If not specified, all tile attributes are imported in page scope. Once imported, an attribute can be used as any other beans from jsp contexts.</p>

Can contain: empty

Attributes

NameDescriptionType
ignore <p>If this attribute is set to true, and the attribute specified by the name does not exist, simply return without error. The default value is false, which will cause a runtime exception to be thrown.</p> String
name Tile's attribute name. If not specified, all attributes are imported. String
scope <p>Scope into which attribute is imported. Default to page.</p> String

<tiles:initComponentDefinitions>

<p><strong>Initialize Tile/Component definitions factory.</strong></p> <p>In order to use Tile/Component definitions factory, you need to initialize the factory. This is generally done in a initializing servlet. In particular, it is done in "ComponentActionServlet" if you use it. If you don't initialize factory in a servlet, you can initialize it using this tag. You need to provide the description file name, and optionally the factory classname. Initialization is done only once, at the first call of this tag. Subsequent calls are ignored (tag checks existence of the factory).</p>

Can contain: empty

Attributes

NameDescriptionType
classname <p>If specified, classname of the factory to create and initialized. </p> String
file* <p>Definition file name.</p> String

<tiles:insert>

<p><strong>Insert a tiles/component/template.</strong></p> <p>Insert a tiles/component/template with the possibility to pass parameters (called attribute). A tile can be seen as a procedure that can take parameters or attributes. <code>&lt;tiles:insert&gt;</code> allows to define these attributes and pass them to the inserted jsp page, called template. Attributes are defined using nested tag <code>&lt;tiles:put&gt;</code> or <code>&lt;tiles:putList&gt;</code>. </p> <p>You must specify one of this tag attribute :</p> <ul> <li><code>template</code>, for inserting a tiles/component/template page,</li> <li><code>component</code>, for inserting a tiles/component/template page, (same as template)</li> <li><code>page</code> for inserting a JSP page, (same as template)</li> <li><code>definition</code>, for inserting a definition from definitions factory</li> <li><code>attribute</code>, surrounding tiles's attribute name whose value is used.<br/> If attribute is associated to 'direct' flag (see put), and flag is true, write attribute value (no insertion).</li> <li><code>name</code>, to let 'insert' determine the type of entities to insert. In this later case, search is done in this order : definitions, tiles/components/templates, pages.</li> </ul> <p>In fact, Page, component and template, are equivalent as a tile, component or template are jsp page.</p> <p><strong>Example : </strong></p> <pre> <code> &lt;tiles:insert page="/basic/myLayout.jsp" flush="true"> &lt;tiles:put name="title" value="My first page" /> &lt;tiles:put name="header" value="/common/header.jsp" /> &lt;tiles:put name="footer" value="/common/footer.jsp" /> &lt;tiles:put name="menu" value="/basic/menu.jsp" /> &lt;tiles:put name="body" value="/basic/helloBody.jsp" /> &lt;/tiles:insert> </code> </pre>

Can contain: JSP

Attributes

NameDescriptionType
attribute <p>Name of an attribute in current tile/component context. Value of this attribute is passed to 'name' (see attribute 'name').</p> String
beanName <p>Name of the bean used as value. Bean is retrieved from specified context, if any. Otherwise, method pageContext.findAttribute is used. If beanProperty is also specified, retrieve value from the corresponding bean property.</p> <p>If found bean (or property value) is instance of one of Attribute class (Direct, Instance, ...), insertion is done according to the class type. Otherwise, the toString method is called on the bean, and returned String is used as name to insert (see 'name' attribute).</p> String
beanProperty <p>Bean property name. If specified, value is retrieved from this property. Supports nested/indexed properties.</p> String
beanScope <p>Scope into which bean is searched. If not specified, method pageContext.findAttribute is used. Scope can be any JSP scope, 'component', or 'template'. In these two later cases, bean is search in tile/component/template context.</p> String
component <p>Path (relative or absolute to webapps) of the component to insert.</p> <p>'page', 'component' and 'template' are synonyms : they have exactly the same behavior.</p> String
controllerClass <p>Class type of a controller called immediately before page is inserted.</p> <p>Controller is used to prepare data to be render by inserted Tile.</p> <p>See also controlerUrl</p> <p>Class must implements or extends one of the following :</p> <ul> <li>org.apache.struts.tiles.Controller</li> <li>org.apache.struts.tiles.ControllerSupport</li> <li>org.apache.struts.action.Action (wrapper org.apache.struts.action.ActionController is used)</li> </ul> <p>See also controllerUrl. Only one of controllerUrl or controllerClass should be used.</p> String
controllerUrl <p>Url of a controller called immediately before page is inserted.</p> <p>Url usually denote a Struts action. Controller (action) is used to prepare data to be render by inserted Tile.</p> <p>See also controlerClass. Only one of controllerUrl or controllerClass should be used.</p> String
definition <p>Name of the definition to insert. Definition are defined in a centralized file. For now, only definition from factory can be inserted with this attribute. To insert a definition defined with tag <code>&lt;tiles:definition&gt;</code>, use beanName="".</p> String
flush <p>True or false. If true, current page out stream is flushed before insertion.</p> String
ignore <p>If this attribute is set to true, and the attribute specified by the name does not exist, simply return without writing anything. The default value is false, which will cause a runtime exception to be thrown.</p> String
name <p>Name of an entity to insert. Search is done in this order : definition, attribute, [tile/component/template/page].</p> String
page <p>Path (relative or absolute to webapps) of the page to insert.</p> <p>'page', 'component' and 'template' are synonyms : they have exactly the same behavior.</p> String
role <p>If the user is in the specified role, the tag is taken into account; otherwise, the tag is ignored (skipped).</p> String
template <p>A string representing the URI of a tile or template (a JSP page).</p> <p>'page', 'component' and 'template' are synonyms : they have exactly the same behavior.</p> String

<tiles:put>

<p><strong>Put an attribute into tile/component/template context. </strong></p> <p>Define an attribute to pass to tile/component/template. This tag can only be used inside 'insert' or 'definition' tag. Value (or content) is specified using attribute 'value' (or 'content'), or using the tag body. It is also possible to specify the type of the value :</p> <ul> <li>string : Content is written directly.</li> <li>page | template : Content is included from specified URL. Name is used as an URL.</li> <li>definition : Content come from specified definition (from factory). Name is used as definition name.</li> </ul> <p>If 'type' attribute is not specified, content is 'untyped', unless it comes from a typed bean.</p> <p>Note that using 'direct="true"' is equivalent to 'type="string"'.</p>

Can contain: JSP

Attributes

NameDescriptionType
beanName <p>Name of the bean used as value. Bean is retrieved from specified context, if any. Otherwise, method pageContext.findAttribute is used. If beanProperty is specified, retrieve value from the corresponding bean property.</p> String
beanProperty <p>Bean property name. If specified, value is retrieve from this property. Support nested/indexed properties.</p> String
beanScope <p>Scope into which bean is searched. If not specified, method pageContext.findAttribute is used. Scope can be any JSP scope, 'tile', 'component', or 'template'. In these three later cases, bean is search in tile/component/template context.</p> String
content <p>Content that's put into tile scope. Synonym to value. Attribute added for compatibility with JSP Template.</p> String
direct <p>Determines how content is handled: true means content is printed <em>direct</em></p> String
name <p>Name of the attribute.</p> String
role <p>If the user is in the specified role, the tag is taken into account; otherwise, the tag is ignored (skipped).</p> String
type <p>Specify content type: string, page, template or definition.</p> <ul> <li>String : Content is printed directly.</li> <li>page | template : Content is included from specified URL. Name is used as an URL.</li> <li>definition : Value is the name of a definition defined in factory (xml file). Definition will be searched in the inserted tile, in a <code>&lt;tiles:insert attribute="attributeName"&gt;</code> tag, where 'attributeName' is the name used for this tag.</li> </ul> String
value <p>Attribute value. Could be a String or an Object. Value can come from a direct assignment (value="aValue") or from a bean. One of 'value' 'content' or 'beanName' must be present.</p> String

<tiles:putList>

<p><strong>Declare a list that will be pass as attribute to tile. </strong></p> <p>Declare a list that will be pass as attribute to tile. List elements are added using the tag 'add'. This tag can only be used inside 'insert' or 'definition' tag.</p>

Can contain: JSP

Attributes

NameDescriptionType
name* <p>Name of the list.</p> String

<tiles:useAttribute>

<p><strong>Use attribute value inside page.</strong></p> <p>Declare a Java variable, and an attribute in the specified scope, using tile attribute value.</p> <p>Java variable and attribute will have the name specified by 'id', or the original name if not specified.</p>

Can contain: empty

Attributes

NameDescriptionType
classname <p>Class of the declared variable.</p> String
id <p>Declared attribute and variable name.</p> String
ignore <p>If this attribute is set to true, and the attribute specified by the name does not exist, simply return without error. The default value is false, which will cause a runtime exception to be thrown.</p> String
name* <p>Tile's attribute name.</p> String
scope <p>Scope of the declared attribute. Default to 'page'.</p> String