Class EscapeBodyTag
java.lang.Object
jakarta.servlet.jsp.tagext.TagSupport
org.springframework.web.servlet.tags.RequestContextAwareTag
org.springframework.web.servlet.tags.HtmlEscapingAwareTag
org.springframework.web.servlet.tags.EscapeBodyTag
- All Implemented Interfaces:
jakarta.servlet.jsp.tagext.BodyTag, jakarta.servlet.jsp.tagext.IterationTag, jakarta.servlet.jsp.tagext.JspTag, jakarta.servlet.jsp.tagext.Tag, jakarta.servlet.jsp.tagext.TryCatchFinally, Serializable
public class EscapeBodyTag
extends HtmlEscapingAwareTag
implements jakarta.servlet.jsp.tagext.BodyTag
The
<escapeBody> tag is used to escape its enclosed body content,
applying HTML escaping and/or JavaScript escaping.
Provides a "htmlEscape" property for explicitly specifying whether to apply HTML escaping. If not set, a page-level default (for example, from the HtmlEscapeTag) or an application-wide default (the "defaultHtmlEscape" context-param in web.xml) is used.
Provides a "javaScriptEscape" property for specifying whether to apply JavaScript escaping. Can be combined with HTML escaping or used standalone.
| 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. |
| javaScriptEscape | false | true | Set JavaScript escaping for this tag, as boolean value.
Default is false. |
- Since:
- 1.1.1
- Author:
- Juergen Hoeller
- See Also:
-
Field Summary
Fields inherited from class RequestContextAwareTag
logger, REQUEST_CONTEXT_PAGE_ATTRIBUTEFields inherited from class jakarta.servlet.jsp.tagext.TagSupport
id, pageContextFields inherited from interface jakarta.servlet.jsp.tagext.BodyTag
EVAL_BODY_BUFFEREDFields inherited from interface jakarta.servlet.jsp.tagext.IterationTag
EVAL_BODY_AGAINFields inherited from interface jakarta.servlet.jsp.tagext.Tag
EVAL_BODY_INCLUDE, EVAL_PAGE, SKIP_BODY, SKIP_PAGE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintvoidprotected intCalled by doStartTag to perform the actual work.protected StringRead the unescaped body content from the page.voidsetBodyContent(jakarta.servlet.jsp.tagext.BodyContent bodyContent) voidsetJavaScriptEscape(boolean javaScriptEscape) Set JavaScript escaping for this tag, as boolean value.protected voidwriteBodyContent(String content) Write the escaped body content to the page.Methods inherited from class HtmlEscapingAwareTag
htmlEscape, isDefaultHtmlEscape, isHtmlEscape, isResponseEncodedHtmlEscape, setHtmlEscapeMethods inherited from class RequestContextAwareTag
doCatch, doFinally, doStartTag, getRequestContextMethods inherited from class jakarta.servlet.jsp.tagext.TagSupport
doEndTag, findAncestorWithClass, getId, getParent, getValue, getValues, release, removeValue, setId, setPageContext, setParent, setValueMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface jakarta.servlet.jsp.tagext.Tag
doEndTag, doStartTag, getParent, release, setPageContext, setParent
-
Constructor Details
-
EscapeBodyTag
public EscapeBodyTag()
-
-
Method Details
-
setJavaScriptEscape
public void setJavaScriptEscape(boolean javaScriptEscape) throws jakarta.servlet.jsp.JspException Set JavaScript escaping for this tag, as boolean value. Default is "false".- Throws:
jakarta.servlet.jsp.JspException
-
doStartTagInternal
protected int doStartTagInternal()Description copied from class:RequestContextAwareTagCalled by doStartTag to perform the actual work.- Specified by:
doStartTagInternalin classRequestContextAwareTag- Returns:
- same as TagSupport.doStartTag
- See Also:
-
doInitBody
public void doInitBody()- Specified by:
doInitBodyin interfacejakarta.servlet.jsp.tagext.BodyTag
-
setBodyContent
public void setBodyContent(jakarta.servlet.jsp.tagext.BodyContent bodyContent) - Specified by:
setBodyContentin interfacejakarta.servlet.jsp.tagext.BodyTag
-
doAfterBody
public int doAfterBody() throws jakarta.servlet.jsp.JspException- Specified by:
doAfterBodyin interfacejakarta.servlet.jsp.tagext.IterationTag- Overrides:
doAfterBodyin classjakarta.servlet.jsp.tagext.TagSupport- Throws:
jakarta.servlet.jsp.JspException
-
readBodyContent
Read the unescaped body content from the page.- Returns:
- the original content
- Throws:
IOException- if reading failed
-
writeBodyContent
Write the escaped body content to the page.Can be overridden in subclasses, for example, for testing purposes.
- Parameters:
content- the content to write- Throws:
IOException- if writing failed
-