Class UpdateTagSupport
java.lang.Object
javax.servlet.jsp.tagext.TagSupport
javax.servlet.jsp.tagext.BodyTagSupport
org.apache.taglibs.standard.tag.common.sql.UpdateTagSupport
- All Implemented Interfaces:
Serializable,SQLExecutionTag,BodyTag,IterationTag,JspTag,Tag,TryCatchFinally
- Direct Known Subclasses:
UpdateTag
public abstract class UpdateTagSupport
extends BodyTagSupport
implements TryCatchFinally, SQLExecutionTag
Tag handler for <Update> in JSTL.
- See Also:
-
Field Summary
Fields inherited from interface javax.servlet.jsp.tagext.BodyTag
EVAL_BODY_BUFFERED, EVAL_BODY_TAGFields inherited from interface javax.servlet.jsp.tagext.IterationTag
EVAL_BODY_AGAINFields inherited from interface javax.servlet.jsp.tagext.Tag
EVAL_BODY_INCLUDE, EVAL_PAGE, SKIP_BODY, SKIP_PAGE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidCalled by nested parameter elements to add PreparedStatement parameter values.voidJust rethrows the Throwable.intdoEndTag()Execute the SQL statement, set either through thesqlattribute or as the body, and save the result as a variable named by thevarattribute in the scope specified by thescopeattribute, as an object that implements the Result interface.voidClose theConnection, unless this action is used as part of a transaction.intPrepares for execution by setting the initial state, such as getting theConnectionvoidSetter method for the scope of the variable to hold the result.voidSetter method for the name of the variable to hold the result.Methods inherited from class javax.servlet.jsp.tagext.BodyTagSupport
doAfterBody, doInitBody, getBodyContent, getPreviousOut, release, setBodyContentMethods inherited from class javax.servlet.jsp.tagext.TagSupport
findAncestorWithClass, getId, getParent, getValue, getValues, removeValue, setId, setPageContext, setParent, setValueMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface javax.servlet.jsp.tagext.Tag
getParent, setPageContext, setParent
-
Constructor Details
-
UpdateTagSupport
public UpdateTagSupport()
-
-
Method Details
-
setVar
Setter method for the name of the variable to hold the result. -
setScope
Setter method for the scope of the variable to hold the result. -
doStartTag
Prepares for execution by setting the initial state, such as getting theConnection- Specified by:
doStartTagin interfaceTag- Overrides:
doStartTagin classBodyTagSupport- Returns:
- EVAL_BODY_BUFFERED
- Throws:
JspException- if an error occurred while processing this tag- See Also:
-
doEndTag
Execute the SQL statement, set either through the
sqlattribute or as the body, and save the result as a variable named by thevarattribute in the scope specified by thescopeattribute, as an object that implements the Result interface.The connection used to execute the statement comes either from the
DataSourcespecified by thedataSourceattribute, provided by a parent action element, or is retrieved from a JSP scope attribute namedjavax.servlet.jsp.jstl.sql.dataSource.- Specified by:
doEndTagin interfaceTag- Overrides:
doEndTagin classBodyTagSupport- Returns:
- EVAL_PAGE
- Throws:
JspException- if an error occurred while processing this tag- See Also:
-
doCatch
Just rethrows the Throwable.- Specified by:
doCatchin interfaceTryCatchFinally- Parameters:
t- The throwable exception navigating through this tag.- Throws:
Throwable- if the exception is to be rethrown further up the nest chain.
-
doFinally
public void doFinally()Close theConnection, unless this action is used as part of a transaction.- Specified by:
doFinallyin interfaceTryCatchFinally
-
addSQLParameter
Called by nested parameter elements to add PreparedStatement parameter values.- Specified by:
addSQLParameterin interfaceSQLExecutionTag- Parameters:
o- thePreparedStatementparameter value
-