December 2000
Intermediate to advanced
574 pages
17h 3m
English
HttpJspPage
|
Interface Name: |
javax.servlet.jsp.
HttpJspPage
|
|
Extends: |
javax.servlet.jsp.JspPage |
|
Implemented by: |
JSP page implementation classes serving HTTP requests |
The HttpJspPage interface must be implemented by
the generated JSP page implementation classes when HTTP is used.
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;
}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.
Read now
Unlock full access