SPR-6114 - Upgrade the Spring JSP tag libraries to JSP 2.0

This commit is contained in:
Jeremy Grelle 2009-09-17 22:39:35 +00:00
parent d29a894d57
commit 1c134925ba
2 changed files with 571 additions and 595 deletions

View File

@ -1,69 +1,66 @@
<?xml version="1.0" encoding="ISO-8859-1" ?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN" "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd"> <taglib xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
version="2.0">
<taglib> <description>Spring Framework JSP Tag Library</description>
<tlib-version>3.0</tlib-version>
<tlib-version>2.5</tlib-version>
<jsp-version>1.2</jsp-version>
<short-name>spring</short-name> <short-name>spring</short-name>
<uri>http://www.springframework.org/tags</uri> <uri>http://www.springframework.org/tags</uri>
<description>Spring Framework JSP Tag Library</description>
<tag> <tag>
<name>htmlEscape</name>
<tag-class>org.springframework.web.servlet.tags.HtmlEscapeTag</tag-class>
<body-content>JSP</body-content>
<description> <description>
Sets default HTML escape value for the current page. Sets default HTML escape value for the current page.
Overrides a "defaultHtmlEscape" context-param in web.xml, if any. Overrides a "defaultHtmlEscape" context-param in web.xml, if any.
</description> </description>
<name>htmlEscape</name>
<tag-class>org.springframework.web.servlet.tags.HtmlEscapeTag</tag-class>
<body-content>JSP</body-content>
<attribute> <attribute>
<description>Set the default value for HTML escaping, to be put
into the current PageContext.</description>
<name>defaultHtmlEscape</name> <name>defaultHtmlEscape</name>
<required>true</required> <required>true</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
<description>Set the default value for HTML escaping, to be put
into the current PageContext.</description>
</attribute> </attribute>
</tag> </tag>
<tag> <tag>
<name>escapeBody</name>
<tag-class>org.springframework.web.servlet.tags.EscapeBodyTag</tag-class>
<body-content>JSP</body-content>
<description> <description>
Escapes its enclosed body content, applying HTML escaping and/or JavaScript escaping. Escapes its enclosed body content, applying HTML escaping and/or JavaScript escaping.
The HTML escaping flag participates in a page-wide or application-wide setting The HTML escaping flag participates in a page-wide or application-wide setting
(i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml). (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
</description> </description>
<name>escapeBody</name>
<tag-class>org.springframework.web.servlet.tags.EscapeBodyTag</tag-class>
<body-content>JSP</body-content>
<attribute> <attribute>
<description>Set HTML escaping for this tag, as boolean value. Overrides the
default HTML escaping setting for the current page.</description>
<name>htmlEscape</name> <name>htmlEscape</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
<description>Set HTML escaping for this tag, as boolean value. Overrides the
default HTML escaping setting for the current page.</description>
</attribute> </attribute>
<attribute> <attribute>
<description>Set JavaScript escaping for this tag, as boolean value.
Default is false.</description>
<name>javaScriptEscape</name> <name>javaScriptEscape</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
<description>Set JavaScript escaping for this tag, as boolean value.
Default is false.</description>
</attribute> </attribute>
</tag> </tag>
<tag> <tag>
<name>message</name>
<tag-class>org.springframework.web.servlet.tags.MessageTag</tag-class>
<body-content>JSP</body-content>
<description> <description>
Retrieves the message with the given code, or text if code isn't resolvable. Retrieves the message with the given code, or text if code isn't resolvable.
The HTML escaping flag participates in a page-wide or application-wide setting The HTML escaping flag participates in a page-wide or application-wide setting
(i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml). (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
</description> </description>
<name>message</name>
<tag-class>org.springframework.web.servlet.tags.MessageTag</tag-class>
<body-content>JSP</body-content>
<attribute> <attribute>
<name>message</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
<description>A MessageSourceResolvable argument (direct or through JSP EL). <description>A MessageSourceResolvable argument (direct or through JSP EL).
Fits nicely when used in conjunction with Spring's own validation error Fits nicely when used in conjunction with Spring's own validation error
classes which all implement the MessageSourceResolvable interface. For classes which all implement the MessageSourceResolvable interface. For
@ -71,346 +68,349 @@
passing each error (using a runtime expression) as the value of this passing each error (using a runtime expression) as the value of this
'message' attribute, thus effecting the easy display of such error 'message' attribute, thus effecting the easy display of such error
messages.</description> messages.</description>
<name>message</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
</attribute> </attribute>
<attribute> <attribute>
<description>The code (key) to use when looking up the message.
If code is not provided, the text attribute will be used.</description>
<name>code</name> <name>code</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
<description>The code (key) to use when looking up the message.
If code is not provided, the text attribute will be used.</description>
</attribute> </attribute>
<attribute> <attribute>
<name>arguments</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
<description>Set optional message arguments for this tag, as a <description>Set optional message arguments for this tag, as a
(comma-)delimited String (each String argument can contain JSP EL), (comma-)delimited String (each String argument can contain JSP EL),
an Object array (used as argument array), or a single Object (used an Object array (used as argument array), or a single Object (used
as single argument).</description> as single argument).</description>
<name>arguments</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
</attribute> </attribute>
<attribute> <attribute>
<description>The separator character to be used for splitting the
arguments string value; defaults to a 'comma' (',').</description>
<name>argumentSeparator</name> <name>argumentSeparator</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
<description>The separator character to be used for splitting the
arguments string value; defaults to a 'comma' (',').</description>
</attribute> </attribute>
<attribute> <attribute>
<name>text</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
<description>Default text to output when a message for the given code <description>Default text to output when a message for the given code
could not be found. If both text and code are not set, the tag will could not be found. If both text and code are not set, the tag will
output null.</description> output null.</description>
</attribute> <name>text</name>
<attribute>
<name>var</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<description>The string to use when binding the result to the page, <description>The string to use when binding the result to the page,
request, session or application scope. If not specified, the result request, session or application scope. If not specified, the result
gets outputted to the writer (i.e. typically directly to the JSP).</description> gets outputted to the writer (i.e. typically directly to the JSP).</description>
</attribute> <name>var</name>
<attribute>
<name>scope</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<description>The scope to use when exporting the result to a variable. <description>The scope to use when exporting the result to a variable.
This attribute is only used when var is also set. Possible values are This attribute is only used when var is also set. Possible values are
page, request, session and application.</description> page, request, session and application.</description>
<name>scope</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
</attribute> </attribute>
<attribute> <attribute>
<description>Set HTML escaping for this tag, as boolean value.
Overrides the default HTML escaping setting for the current page.</description>
<name>htmlEscape</name> <name>htmlEscape</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
<description>Set HTML escaping for this tag, as boolean value.
Overrides the default HTML escaping setting for the current page.</description>
</attribute> </attribute>
<attribute> <attribute>
<description>Set JavaScript escaping for this tag, as boolean value. Default is false.</description>
<name>javaScriptEscape</name> <name>javaScriptEscape</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
<description>Set JavaScript escaping for this tag, as boolean value. Default is false.</description>
</attribute> </attribute>
</tag> </tag>
<tag> <tag>
<name>theme</name>
<tag-class>org.springframework.web.servlet.tags.ThemeTag</tag-class>
<body-content>JSP</body-content>
<description> <description>
Retrieves the theme message with the given code, or text if code isn't resolvable. Retrieves the theme message with the given code, or text if code isn't resolvable.
The HTML escaping flag participates in a page-wide or application-wide setting The HTML escaping flag participates in a page-wide or application-wide setting
(i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml). (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
</description> </description>
<name>theme</name>
<tag-class>org.springframework.web.servlet.tags.ThemeTag</tag-class>
<body-content>JSP</body-content>
<attribute> <attribute>
<description>A MessageSourceResolvable argument (direct or through JSP EL).</description>
<name>message</name> <name>message</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
<description>A MessageSourceResolvable argument (direct or through JSP EL).</description>
</attribute> </attribute>
<attribute> <attribute>
<description>The code (key) to use when looking up the message.
If code is not provided, the text attribute will be used.</description>
<name>code</name> <name>code</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
<description>The code (key) to use when looking up the message.
If code is not provided, the text attribute will be used.</description>
</attribute> </attribute>
<attribute> <attribute>
<name>arguments</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
<description>Set optional message arguments for this tag, as a <description>Set optional message arguments for this tag, as a
(comma-)delimited String (each String argument can contain JSP EL), (comma-)delimited String (each String argument can contain JSP EL),
an Object array (used as argument array), or a single Object (used an Object array (used as argument array), or a single Object (used
as single argument).</description> as single argument).</description>
<name>arguments</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
</attribute> </attribute>
<attribute> <attribute>
<description>The separator character to be used for splitting the
arguments string value; defaults to a 'comma' (',').</description>
<name>argumentSeparator</name> <name>argumentSeparator</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
<description>The separator character to be used for splitting the
arguments string value; defaults to a 'comma' (',').</description>
</attribute> </attribute>
<attribute> <attribute>
<name>text</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
<description>Default text to output when a message for the given code <description>Default text to output when a message for the given code
could not be found. If both text and code are not set, the tag will could not be found. If both text and code are not set, the tag will
output null.</description> output null.</description>
</attribute> <name>text</name>
<attribute>
<name>var</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<description>The string to use when binding the result to the page, <description>The string to use when binding the result to the page,
request, session or application scope. If not specified, the result request, session or application scope. If not specified, the result
gets outputted to the writer (i.e. typically directly to the JSP).</description> gets outputted to the writer (i.e. typically directly to the JSP).</description>
</attribute> <name>var</name>
<attribute>
<name>scope</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<description>The scope to use when exporting the result to a variable. <description>The scope to use when exporting the result to a variable.
This attribute is only used when var is also set. Possible values are This attribute is only used when var is also set. Possible values are
page, request, session and application.</description> page, request, session and application.</description>
<name>scope</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
</attribute> </attribute>
<attribute> <attribute>
<description>Set HTML escaping for this tag, as boolean value.
Overrides the default HTML escaping setting for the current page.</description>
<name>htmlEscape</name> <name>htmlEscape</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
<description>Set HTML escaping for this tag, as boolean value.
Overrides the default HTML escaping setting for the current page.</description>
</attribute> </attribute>
<attribute> <attribute>
<description>Set JavaScript escaping for this tag, as boolean value. Default is false.</description>
<name>javaScriptEscape</name> <name>javaScriptEscape</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
<description>Set JavaScript escaping for this tag, as boolean value. Default is false.</description>
</attribute> </attribute>
</tag> </tag>
<tag> <tag>
<name>hasBindErrors</name>
<tag-class>org.springframework.web.servlet.tags.BindErrorsTag</tag-class>
<body-content>JSP</body-content>
<description> <description>
Provides Errors instance in case of bind errors. Provides Errors instance in case of bind errors.
The HTML escaping flag participates in a page-wide or application-wide setting The HTML escaping flag participates in a page-wide or application-wide setting
(i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml). (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
</description> </description>
<name>hasBindErrors</name>
<tag-class>org.springframework.web.servlet.tags.BindErrorsTag</tag-class>
<body-content>JSP</body-content>
<variable> <variable>
<name-given>errors</name-given> <name-given>errors</name-given>
<variable-class>org.springframework.validation.Errors</variable-class> <variable-class>org.springframework.validation.Errors</variable-class>
</variable> </variable>
<attribute> <attribute>
<name>name</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
<description>The name of the bean in the request, that needs to be <description>The name of the bean in the request, that needs to be
inspected for errors. If errors are available for this bean, they inspected for errors. If errors are available for this bean, they
will be bound under the 'errors' key.</description> will be bound under the 'errors' key.</description>
<name>name</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute> </attribute>
<attribute> <attribute>
<description>Set HTML escaping for this tag, as boolean value.
Overrides the default HTML escaping setting for the current page.</description>
<name>htmlEscape</name> <name>htmlEscape</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
<description>Set HTML escaping for this tag, as boolean value.
Overrides the default HTML escaping setting for the current page.</description>
</attribute> </attribute>
</tag> </tag>
<tag> <tag>
<name>nestedPath</name>
<tag-class>org.springframework.web.servlet.tags.NestedPathTag</tag-class>
<body-content>JSP</body-content>
<description> <description>
Sets a nested path to be used by the bind tag's path. Sets a nested path to be used by the bind tag's path.
</description> </description>
<name>nestedPath</name>
<tag-class>org.springframework.web.servlet.tags.NestedPathTag</tag-class>
<body-content>JSP</body-content>
<variable> <variable>
<name-given>nestedPath</name-given> <name-given>nestedPath</name-given>
<variable-class>java.lang.String</variable-class> <variable-class>java.lang.String</variable-class>
</variable> </variable>
<attribute> <attribute>
<name>path</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
<description>Set the path that this tag should apply. E.g. 'customer' <description>Set the path that this tag should apply. E.g. 'customer'
to allow bind paths like 'address.street' rather than to allow bind paths like 'address.street' rather than
'customer.address.street'.</description> 'customer.address.street'.</description>
<name>path</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute> </attribute>
</tag> </tag>
<tag> <tag>
<name>bind</name>
<tag-class>org.springframework.web.servlet.tags.BindTag</tag-class>
<body-content>JSP</body-content>
<description> <description>
Provides BindStatus object for the given bind path. Provides BindStatus object for the given bind path.
The HTML escaping flag participates in a page-wide or application-wide setting The HTML escaping flag participates in a page-wide or application-wide setting
(i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml). (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
</description> </description>
<name>bind</name>
<tag-class>org.springframework.web.servlet.tags.BindTag</tag-class>
<body-content>JSP</body-content>
<variable> <variable>
<name-given>status</name-given> <name-given>status</name-given>
<variable-class>org.springframework.web.servlet.support.BindStatus</variable-class> <variable-class>org.springframework.web.servlet.support.BindStatus</variable-class>
</variable> </variable>
<attribute> <attribute>
<name>path</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
<description>The path to the bean or bean property to bind status <description>The path to the bean or bean property to bind status
information for. For instance account.name, company.address.zipCode information for. For instance account.name, company.address.zipCode
or just employee. The status object will exported to the page scope, or just employee. The status object will exported to the page scope,
specifically for this bean or bean property</description> specifically for this bean or bean property</description>
<name>path</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute> </attribute>
<attribute> <attribute>
<description>Set whether to ignore a nested path, if any. Default is to not ignore.</description>
<name>ignoreNestedPath</name> <name>ignoreNestedPath</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
<description>Set whether to ignore a nested path, if any. Default is to not ignore.</description>
</attribute> </attribute>
<attribute> <attribute>
<description>Set HTML escaping for this tag, as boolean value. Overrides
the default HTML escaping setting for the current page.</description>
<name>htmlEscape</name> <name>htmlEscape</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
<description>Set HTML escaping for this tag, as boolean value. Overrides
the default HTML escaping setting for the current page.</description>
</attribute> </attribute>
</tag> </tag>
<tag> <tag>
<name>transform</name>
<tag-class>org.springframework.web.servlet.tags.TransformTag</tag-class>
<body-content>JSP</body-content>
<description> <description>
Provides transformation of variables to Strings, using an appropriate Provides transformation of variables to Strings, using an appropriate
custom PropertyEditor from BindTag (can only be used inside BindTag). custom PropertyEditor from BindTag (can only be used inside BindTag).
The HTML escaping flag participates in a page-wide or application-wide setting The HTML escaping flag participates in a page-wide or application-wide setting
(i.e. by HtmlEscapeTag or a 'defaultHtmlEscape' context-param in web.xml). (i.e. by HtmlEscapeTag or a 'defaultHtmlEscape' context-param in web.xml).
</description> </description>
<name>transform</name>
<tag-class>org.springframework.web.servlet.tags.TransformTag</tag-class>
<body-content>JSP</body-content>
<attribute> <attribute>
<name>value</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
<description>The value to transform. This is the actual object you want <description>The value to transform. This is the actual object you want
to have transformed (for instance a Date). Using the PropertyEditor that to have transformed (for instance a Date). Using the PropertyEditor that
is currently in use by the 'spring:bind' tag.</description> is currently in use by the 'spring:bind' tag.</description>
<name>value</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute> </attribute>
<attribute> <attribute>
<name>var</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
<description>The string to use when binding the result to the page, <description>The string to use when binding the result to the page,
request, session or application scope. If not specified, the result gets request, session or application scope. If not specified, the result gets
outputted to the writer (i.e. typically directly to the JSP).</description> outputted to the writer (i.e. typically directly to the JSP).</description>
</attribute>
<attribute>
<name>scope</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
<description>The scope to use when exported the result to a variable.
This attribute is only used when var is also set. Possible values are
page, request, session and application.</description>
</attribute>
<attribute>
<name>htmlEscape</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
<description>Set HTML escaping for this tag, as boolean value. Overrides
the default HTML escaping setting for the current page.</description>
</attribute>
</tag>
<tag>
<name>url</name>
<tag-class>org.springframework.web.servlet.tags.UrlTag</tag-class>
<body-content>JSP</body-content>
<description>URL tag based on the JSTL c:url tag. This variant is fully
backwards compatible with the standard tag. Enhancements include support
for URL template parameters.</description>
<attribute>
<name>value</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
<description>The URL to build. This value can include template place holders
that are replaced with the URL encoded value of the named parameter. Parameters
must be defined using the param tag inside the body of this tag.</description>
</attribute>
<attribute>
<name>context</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
<description>Specifies a remote application context. The default is the
current application context.</description>
</attribute>
<attribute>
<name>var</name> <name>var</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
<description>The name of the variable to export the URL value to.</description>
</attribute> </attribute>
<attribute> <attribute>
<description>The scope to use when exported the result to a variable.
This attribute is only used when var is also set. Possible values are
page, request, session and application.</description>
<name>scope</name> <name>scope</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
<description>The scope for the var. 'application', 'session', 'request' and
'page' scopes are supported. Defaults to page scope. This attribute has no
effect unless the var attribute is also defined.</description>
</attribute> </attribute>
<attribute> <attribute>
<description>Set HTML escaping for this tag, as boolean value. Overrides
the default HTML escaping setting for the current page.</description>
<name>htmlEscape</name> <name>htmlEscape</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
<description>Set HTML escaping for this tag, as boolean value. Overrides the
default HTML escaping setting for the current page.</description>
</attribute>
<attribute>
<name>javaScriptEscape</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
<description>Set JavaScript escaping for this tag, as boolean value.
Default is false.</description>
</attribute> </attribute>
</tag> </tag>
<tag> <tag>
<description>URL tag based on the JSTL c:url tag. This variant is fully
backwards compatible with the standard tag. Enhancements include support
for URL template parameters.</description>
<name>url</name>
<tag-class>org.springframework.web.servlet.tags.UrlTag</tag-class>
<body-content>JSP</body-content>
<attribute>
<description>The URL to build. This value can include template place holders
that are replaced with the URL encoded value of the named parameter. Parameters
must be defined using the param tag inside the body of this tag.</description>
<name>value</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<description>Specifies a remote application context. The default is the
current application context.</description>
<name>context</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<description>The name of the variable to export the URL value to.</description>
<name>var</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<description>The scope for the var. 'application', 'session', 'request' and
'page' scopes are supported. Defaults to page scope. This attribute has no
effect unless the var attribute is also defined.</description>
<name>scope</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<description>Set HTML escaping for this tag, as boolean value. Overrides the
default HTML escaping setting for the current page.</description>
<name>htmlEscape</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<description>Set JavaScript escaping for this tag, as boolean value.
Default is false.</description>
<name>javaScriptEscape</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
</tag>
<tag>
<description>Parameter tag based on the JSTL c:param tag. The sole purpose is to
support params inside the spring:url tag.</description>
<name>param</name> <name>param</name>
<tag-class>org.springframework.web.servlet.tags.ParamTag</tag-class> <tag-class>org.springframework.web.servlet.tags.ParamTag</tag-class>
<body-content>JSP</body-content> <body-content>JSP</body-content>
<description>Parameter tag based on the JSTL c:param tag. The sole purpose is to
support params inside the spring:url tag.</description>
<attribute> <attribute>
<description>The name of the parameter.</description>
<name>name</name> <name>name</name>
<required>true</required> <required>true</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
<description>The name of the parameter.</description>
</attribute> </attribute>
<attribute> <attribute>
<description>The value of the parameter.</description>
<name>value</name> <name>value</name>
<required>false</required> <required>false</required>
<rtexprvalue>true</rtexprvalue> <rtexprvalue>true</rtexprvalue>
<description>The value of the parameter.</description>
</attribute> </attribute>
</tag> </tag>