Class StrutsBodyTagSupport
- All Implemented Interfaces:
- jakarta.servlet.jsp.tagext.BodyTag,- jakarta.servlet.jsp.tagext.IterationTag,- jakarta.servlet.jsp.tagext.JspTag,- jakarta.servlet.jsp.tagext.Tag,- Serializable
- Direct Known Subclasses:
- ComponentTagSupport,- IteratorGeneratorTag,- SortIteratorTag,- SubsetIteratorTag
- See Also:
- 
Field SummaryFields inherited from class jakarta.servlet.jsp.tagext.BodyTagSupportbodyContentFields inherited from class jakarta.servlet.jsp.tagext.TagSupportid, pageContextFields inherited from interface jakarta.servlet.jsp.tagext.BodyTagEVAL_BODY_BUFFERED, EVAL_BODY_TAGFields inherited from interface jakarta.servlet.jsp.tagext.IterationTagEVAL_BODY_AGAINFields inherited from interface jakarta.servlet.jsp.tagext.TagEVAL_BODY_INCLUDE, EVAL_PAGE, SKIP_BODY, SKIP_PAGE
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionprotected voidProvide a mechanism to clear tag state, to handle servlet container JSP tag pooling behaviour with some servers, such as Glassfish.intdoEndTag()protected StringfindString(String expr) protected Objectprotected Objectprotected StringgetBody()protected booleanAllow descendant tags to check if the tag state should be cleared duringdoEndTag()processing,protected ValueStackgetStack()voidrelease()Release state for a Struts JSP Tag handler.voidsetPerformClearTagStateForTagPoolingServers(boolean performClearTagStateForTagPoolingServers) Request that the tag state be cleared duringdoEndTag()processing, which may help with certain edge cases with tag logic running on servers that implement JSP Tag Pooling.protected StringMethods inherited from class jakarta.servlet.jsp.tagext.BodyTagSupportdoAfterBody, doInitBody, doStartTag, getBodyContent, getPreviousOut, setBodyContentMethods inherited from class jakarta.servlet.jsp.tagext.TagSupportfindAncestorWithClass, getId, getParent, getValue, getValues, removeValue, setId, setPageContext, setParent, setValueMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface jakarta.servlet.jsp.tagext.TaggetParent, setPageContext, setParent
- 
Constructor Details- 
StrutsBodyTagSupportpublic StrutsBodyTagSupport()
 
- 
- 
Method Details- 
getStack
- 
findString
- 
findValue
- 
findValue
- 
toString
- 
getBody
- 
doEndTagpublic int doEndTag() throws jakarta.servlet.jsp.JspException- Specified by:
- doEndTagin interface- jakarta.servlet.jsp.tagext.Tag
- Overrides:
- doEndTagin class- jakarta.servlet.jsp.tagext.BodyTagSupport
- Throws:
- jakarta.servlet.jsp.JspException
 
- 
releasepublic void release()Release state for a Struts JSP Tag handler.According to the JSP API documentation, the page compiler guarantees that the release() method will be invoked on the Tag handler before releasing it to the GC (garbage collector). It does not specify when the release() call will be made, though, and timing likely depends on the implementation of the JSP/servlet engine being used. - Specified by:
- releasein interface- jakarta.servlet.jsp.tagext.Tag
- Overrides:
- releasein class- jakarta.servlet.jsp.tagext.BodyTagSupport
 
- 
setPerformClearTagStateForTagPoolingServerspublic void setPerformClearTagStateForTagPoolingServers(boolean performClearTagStateForTagPoolingServers) Request that the tag state be cleared duringdoEndTag()processing, which may help with certain edge cases with tag logic running on servers that implement JSP Tag Pooling. Note: Even though the Tag classes extend this classStrutsBodyTagSupport, and this methodsetPerformClearTagStateForTagPoolingServers(boolean)exists in the method hierarchy, the JSP processing requires us to explicitly override it in every Tag class in order for the Tag handler method to be visible to the JSP processing. Defining a setter in the superclass alone is insufficient (results in "Cannot find a setter method for the attribute").See clearTagStateForTagPoolingServers()for additional details. Warning: Setting this value to true may allow for the desired behaviour, but doing so may violate the JSP specification. Set to true at your own risk.- Parameters:
- performClearTagStateForTagPoolingServers- true if tag state should be cleared, false otherwise.
 
- 
getPerformClearTagStateForTagPoolingServersprotected boolean getPerformClearTagStateForTagPoolingServers()Allow descendant tags to check if the tag state should be cleared duringdoEndTag()processing,- Returns:
- true if tag state should be cleared, false (default) otherwise.
 
- 
clearTagStateForTagPoolingServersprotected void clearTagStateForTagPoolingServers()Provide a mechanism to clear tag state, to handle servlet container JSP tag pooling behaviour with some servers, such as Glassfish.Usage: Override this method in descendant classes to clear any state that might cause issues should the servlet container re-use a cached instance of the tag object. If the descendant class does not declare any new field members then it should not be strictly necessary to call this method there. Typically that means calling the ancestor's ComponentTagSupport.clearTagStateForTagPoolingServers()method first, then resetting instance variables at the current level to their default state.Note: If the descendant overrides doEndTag(), and does not call super.doEndTag(), then the descendant should call this method in the descendant doEndTag() method to ensure consistent clearing of tag state.
 
-