Class DriverTag
- java.lang.Object
-
- jakarta.servlet.jsp.tagext.TagSupport
-
- org.apache.taglibs.standard.tag.common.sql.DriverTag
-
- All Implemented Interfaces:
IterationTag,JspTag,Tag,Serializable
public class DriverTag extends TagSupport
Tag handler for <Driver> in JSTL, used to create a simple DataSource for prototyping.
- Author:
- Hans Bergsten
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class jakarta.servlet.jsp.tagext.TagSupport
id, pageContext
-
Fields inherited from interface jakarta.servlet.jsp.tagext.IterationTag
EVAL_BODY_AGAIN
-
Fields inherited from interface jakarta.servlet.jsp.tagext.Tag
EVAL_BODY_INCLUDE, EVAL_PAGE, SKIP_BODY, SKIP_PAGE
-
-
Constructor Summary
Constructors Constructor Description DriverTag()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intdoStartTag()Default processing of the start tag, returning SKIP_BODY.voidsetDriver(String driverClassName)voidsetJdbcURL(String jdbcURL)voidsetScope(String scopeName)Setter method for the scope of the variable to hold the result.voidsetUserName(String userName)voidsetVar(String var)-
Methods inherited from class jakarta.servlet.jsp.tagext.TagSupport
doAfterBody, doEndTag, findAncestorWithClass, getId, getParent, getValue, getValues, release, removeValue, setId, setPageContext, setParent, setValue
-
-
-
-
Method Detail
-
setDriver
public void setDriver(String driverClassName)
-
setJdbcURL
public void setJdbcURL(String jdbcURL)
-
setScope
public void setScope(String scopeName)
Setter method for the scope of the variable to hold the result.
-
setUserName
public void setUserName(String userName)
-
setVar
public void setVar(String var)
-
doStartTag
public int doStartTag() throws JspExceptionDescription copied from class:TagSupportDefault processing of the start tag, returning SKIP_BODY.- Specified by:
doStartTagin interfaceTag- Overrides:
doStartTagin classTagSupport- Returns:
- SKIP_BODY
- Throws:
JspException- if an error occurs while processing this tag- See Also:
Tag.doStartTag()
-
-