Name

HttpJspPage

Synopsis

Interface Name:

javax.servlet.jsp.
                                    HttpJspPage

Extends:

javax.servlet.jsp.JspPage

Implemented by:

JSP page implementation classes serving HTTP requests

Description

The HttpJspPage interface must be implemented by the generated JSP page implementation classes when HTTP is used.

Interface Declarations

public interface HttpJspPage extends JspPage {
  public void _jspService(javax.servlet.http.HttpServletRequest request,
    javax.servlet.http.HttpServletResponse response)
    throws javax.servlet.ServletException, java.io.IOException;
}

Methods

public void _jspService(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException, java.io.IOException

This method corresponds to the body of the JSP page. It is defined automatically by the JSP processor and should never be defined by the JSP page author.

Get Java Server Pages now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.