public class BindTag extends HtmlEscapingAwareTag implements EditorAwareTag
<bind>
tag supports evaluation of binding errors for a certain
bean or bean property. Exposes a "status" variable of type
BindStatus
,
to both Java expressions and JSP EL expressions.
Can be used to bind to any bean or bean property in the model. The specified path determines whether the tag exposes the status of the bean itself (showing object-level errors), a specific bean property (showing field errors), or a matching set of bean properties (showing all corresponding field errors).
The Errors
object that has
been bound using this tag is exposed to collaborating tags, as well
as the bean property that this errors object applies to. Nested tags
such as the TransformTag
can access those exposed properties.
Attribute | Required? | Runtime Expression? | Description |
---|---|---|---|
htmlEscape |
false |
true |
Set HTML escaping for this tag, as boolean value. Overrides the default HTML escaping setting for the current page. |
ignoreNestedPath |
false |
true |
Set whether to ignore a nested path, if any. Default is to not ignore. |
path |
true |
true |
The path to the bean or bean property to bind status information for. For instance account.name, company.address.zipCode or just employee. The status object will exported to the page scope, specifically for this bean or bean property |
setPath(java.lang.String)
,
Serialized FormModifier and Type | Field and Description |
---|---|
static String |
STATUS_VARIABLE_NAME
Name of the exposed variable within the scope of this tag: "status".
|
logger, REQUEST_CONTEXT_PAGE_ATTRIBUTE
id, pageContext
EVAL_BODY_AGAIN
EVAL_BODY_INCLUDE, EVAL_PAGE, SKIP_BODY, SKIP_PAGE
Constructor and Description |
---|
BindTag() |
Modifier and Type | Method and Description |
---|---|
int |
doEndTag() |
void |
doFinally() |
protected int |
doStartTagInternal()
Called by doStartTag to perform the actual work.
|
PropertyEditor |
getEditor()
Retrieve the PropertyEditor for the property that this tag is
currently bound to.
|
Errors |
getErrors()
Retrieve the Errors instance that this tag is currently bound to.
|
String |
getPath()
Return the path that this tag applies to.
|
String |
getProperty()
Retrieve the property that this tag is currently bound to,
or
null if bound to an object rather than a specific property. |
boolean |
isIgnoreNestedPath()
Return whether to ignore a nested path, if any.
|
void |
setIgnoreNestedPath(boolean ignoreNestedPath)
Set whether to ignore a nested path, if any.
|
void |
setPath(String path)
Set the path that this tag should apply.
|
htmlEscape, isDefaultHtmlEscape, isHtmlEscape, isResponseEncodedHtmlEscape, setHtmlEscape
doCatch, doStartTag, getRequestContext
doAfterBody, findAncestorWithClass, getId, getParent, getValue, getValues, release, removeValue, setId, setPageContext, setParent, setValue
public static final String STATUS_VARIABLE_NAME
public void setPath(String path)
Errors.getGlobalErrors()
,
Errors.getFieldErrors()
public String getPath()
public void setIgnoreNestedPath(boolean ignoreNestedPath)
public boolean isIgnoreNestedPath()
protected final int doStartTagInternal() throws Exception
RequestContextAwareTag
doStartTagInternal
in class RequestContextAwareTag
Exception
- any exception, any checked one other than
a JspException gets wrapped in a JspException by doStartTagTagSupport.doStartTag()
public int doEndTag()
doEndTag
in interface Tag
doEndTag
in class TagSupport
@Nullable public final String getProperty()
null
if bound to an object rather than a specific property.
Intended for cooperating nesting tags.null
if none@Nullable public final Errors getErrors()
null
if none@Nullable public final PropertyEditor getEditor()
EditorAwareTag
getEditor
in interface EditorAwareTag
null
if nonepublic void doFinally()
doFinally
in interface TryCatchFinally
doFinally
in class RequestContextAwareTag