Package org.apache.jasper.runtime
Class HttpJspBase
java.lang.Object
jakarta.servlet.GenericServlet
jakarta.servlet.http.HttpServlet
org.apache.jasper.runtime.HttpJspBase
- All Implemented Interfaces:
HttpJspPage,JspPage,jakarta.servlet.Servlet,jakarta.servlet.ServletConfig,Serializable
This is the super class of all JSP-generated servlets.
- Author:
- Anil K. Vijendran
- See Also:
-
Field Summary
Fields inherited from class jakarta.servlet.http.HttpServlet
LEGACY_DO_HEAD -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidvoid_jspInit()abstract void_jspService(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) The _jspService()method corresponds to the body of the JSP page.final voiddestroy()final voidinit(jakarta.servlet.ServletConfig config) voidThe jspDestroy() method is invoked when the JSP page is about to be destroyed.voidjspInit()The jspInit() method is invoked when the JSP page is initialized.final voidservice(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) Entry point into service.Methods inherited from class jakarta.servlet.http.HttpServlet
doDelete, doGet, doHead, doOptions, doPost, doPut, doTrace, getLastModified, serviceMethods inherited from class jakarta.servlet.GenericServlet
getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletName, init, log, logMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface jakarta.servlet.Servlet
getServletConfig, service
-
Constructor Details
-
HttpJspBase
protected HttpJspBase()
-
-
Method Details
-
init
public final void init(jakarta.servlet.ServletConfig config) throws jakarta.servlet.ServletException - Specified by:
initin interfacejakarta.servlet.Servlet- Overrides:
initin classjakarta.servlet.http.HttpServlet- Throws:
jakarta.servlet.ServletException
-
getServletInfo
- Specified by:
getServletInfoin interfacejakarta.servlet.Servlet- Overrides:
getServletInfoin classjakarta.servlet.GenericServlet
-
destroy
public final void destroy()- Specified by:
destroyin interfacejakarta.servlet.Servlet- Overrides:
destroyin classjakarta.servlet.GenericServlet
-
service
public final void service(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) throws jakarta.servlet.ServletException, IOException Entry point into service.- Overrides:
servicein classjakarta.servlet.http.HttpServlet- Throws:
jakarta.servlet.ServletExceptionIOException
-
jspInit
public void jspInit()Description copied from interface:JspPageThe jspInit() method is invoked when the JSP page is initialized. It is the responsibility of the JSP implementation (and of the class mentioned by the extends attribute, if present) that at this point invocations to the getServletConfig() method will return the desired value. A JSP page can override this method by including a definition for it in a declaration element. A JSP page should redefine the init() method from Servlet. -
_jspInit
public void _jspInit() -
jspDestroy
public void jspDestroy()Description copied from interface:JspPageThe jspDestroy() method is invoked when the JSP page is about to be destroyed. A JSP page can override this method by including a definition for it in a declaration element. A JSP page should redefine the destroy() method from Servlet.- Specified by:
jspDestroyin interfaceJspPage
-
_jspDestroy
protected void _jspDestroy() -
_jspService
public abstract void _jspService(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) throws jakarta.servlet.ServletException, IOException Description copied from interface:HttpJspPageThe _jspService()method corresponds to the body of the JSP page. This method is defined automatically by the JSP container and should never be defined by the JSP page author.If a superclass is specified using the extends attribute, that superclass may choose to perform some actions in its service() method before or after calling the _jspService() method. See using the extends attribute in the JSP_Engine chapter of the JSP specification.
- Specified by:
_jspServicein interfaceHttpJspPage- Parameters:
request- Provides client request information to the JSP.response- Assists the JSP in sending a response to the client.- Throws:
jakarta.servlet.ServletException- Thrown if an error occurred during the processing of the JSP and that the container should take appropriate action to clean up the request.IOException- Thrown if an error occurred while writing the response for this page.
-