javax.servlet.jsp
Interface HttpJspPage
- All Superinterfaces:
- JspPage, Servlet
- All Known Implementing Classes:
- JavaPage
public interface HttpJspPage
- extends JspPage
HttpJspPage is the normal interface to extend when implementing
a custom base class.
Applications wanting to
extend the base JSP class with the <%@ page extends %> directive
must implement HttpJspPage.
_jspService
void _jspService(HttpServletRequest request,
HttpServletResponse response)
throws ServletException,
java.io.IOException
- The main service method for a JSP page. Implementing classes must
call this to service the JSP page itself.
- Parameters:
request
- the servlet request.response
- the servlet response.
- Throws:
ServletException
java.io.IOException