Frames | No Frames |
Methods which throw type javax.servlet.ServletException | |
void |
Called by the server (via the service method)
to allow a servlet to handle a DELETE request. |
void |
Called by the server (via the service method) to
allow a servlet to handle a GET request. |
void | Called by the server (via the service method)
to allow a servlet to handle a OPTIONS request. |
void |
Called by the server (via the service method)
to allow a servlet to handle a POST request. |
void | Called by the server (via the service method)
to allow a servlet to handle a PUT request. |
void | Called by the server (via the service method)
to allow a servlet to handle a TRACE request. |
void |
Dispatches client requests to the protected
service method. |
void |
Receives standard HTTP requests from the public
service method and dispatches
them to the do XXX methods defined in
this class. |
Classes derived from javax.servlet.ServletException | |
class | Defines an exception that a servlet throws to indicate
that it is permanently or temporarily unavailable. |
Methods which throw type javax.servlet.ServletException | |
void | Forwards a request from
a servlet to another resource (servlet, JSP file, or
HTML file) on the server. |
Servlet | ServletContext.getServlet(String name) |
void |
Includes the content of a resource (servlet, JSP page,
HTML file) in the response. |
void |
A convenience method which can be overridden so that there's no need
to call super.init(config) . |
void |
Called by the servlet container to indicate to a servlet that the
servlet is being placed into service. |
void | Called by the servlet container to indicate to a servlet that the
servlet is being placed into service. |
void | Called by the servlet container to allow the servlet to respond to
a request. |
void | Called by the servlet container to allow the servlet to respond to
a request. |
Methods which throw type javax.servlet.ServletException | |
void | _jspService corresponds to the body of the JSP page. |
void | PageContext.forward(String relativeUrlPath)
This method is used to re-direct, or "forward" the current ServletRequest and ServletResponse to another active component in the application. |
void | PageContext.handlePageException(Exception e)
This method is intended to process an unhandled "page" level exception
by redirecting the exception to either the specified error page for this
JSP, or if none was specified, to perform some implementation dependent
action. |
void | PageContext.include(String relativeUrlPath)
Causes the resource specified to be processed as part of the current
ServletRequest and ServletResponse being processed by the calling Thread. |