javax.servlet.jsp
Interface HttpJspPage
- public interface HttpJspPage
- extends JspPage
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.
_jspService
public void _jspService(HttpServletRequest request,
HttpServletResponse response)
throws java.io.IOException,
ServletException
- This method is called on every request.
- Parameters:
request
- contains the request informationresponse
- the reponse information- Throws:
- ServletException - XXX
- java.io.IOException - XXX