Interface HttpJspPage
Every jsp page that is served to the client using the http protocol must implement this interface.
The method _jspService is called on every request.
-
Method Summary
Modifier and TypeMethodDescriptionvoid_jspService(HttpServletRequest request, HttpServletResponse response) This method is called on every request.Methods inherited from interface javax.servlet.jsp.JspPage
jspDestroy, jspInitMethods inherited from interface javax.servlet.Servlet
destroy, getServletConfig, getServletInfo, init, service
-
Method Details
-
_jspService
void _jspService(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException This method is called on every request.- Parameters:
request- contains the request informationresponse- the reponse information- Throws:
ServletException- XXXIOException- XXX
-