|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ServletException | |
javax.servlet | |
javax.servlet.http |
Uses of ServletException in javax.servlet |
Subclasses of ServletException in javax.servlet | |
interface |
UnavailableException
This exception indicates that a servlet is unavailable. |
Methods in javax.servlet that throw ServletException | |
void |
RequestDispatcher.forward(ServletRequest request,
ServletResponse response)
Used for forwarding a request from this servlet to another resource on the server. |
void |
RequestDispatcher.include(ServletRequest request,
ServletResponse response)
Used for including the content generated by another server resource in the body of a response. |
void |
Servlet.init(ServletConfig config)
Called by the web server when the Servlet is placed into service. |
void |
Servlet.service(ServletRequest req,
ServletResponse res)
Called by the servlet engine to allow the servlet to respond to a request. |
Servlet |
ServletContext.getServlet(java.lang.String name)
Deprecated. This method has been deprecated for servlet lifecycle reasons. This method will be permanently removed in a future version of the Servlet API. |
void |
GenericServlet.init(ServletConfig config)
Initializes the servlet and logs the initialization. |
void |
GenericServlet.init()
This method is provided as a convenience so that servlet writers do not have to worry about storing the ServletConfig object. |
abstract void |
GenericServlet.service(ServletRequest req,
ServletResponse res)
Carries out a single request from the client. |
Uses of ServletException in javax.servlet.http |
Methods in javax.servlet.http that throw ServletException | |
protected void |
HttpServlet.doGet(HttpServletRequest req,
HttpServletResponse resp)
Performs the HTTP GET operation; the default implementation reports an HTTP BAD_REQUEST error. |
protected void |
HttpServlet.doPost(HttpServletRequest req,
HttpServletResponse resp)
Performs the HTTP POST operation; the default implementation reports an HTTP BAD_REQUEST error. |
protected void |
HttpServlet.doPut(HttpServletRequest req,
HttpServletResponse resp)
Performs the HTTP PUT operation; the default implementation reports an HTTP BAD_REQUEST error. |
protected void |
HttpServlet.doDelete(HttpServletRequest req,
HttpServletResponse resp)
Performs the HTTP DELETE operation; the default implementation reports an HTTP BAD_REQUEST error. |
protected void |
HttpServlet.doOptions(HttpServletRequest req,
HttpServletResponse resp)
Performs the HTTP OPTIONS operation; the default implementation of this method automatically determines what HTTP Options are supported. |
protected void |
HttpServlet.doTrace(HttpServletRequest req,
HttpServletResponse resp)
Performs the HTTP TRACE operation; the default implementation of this method causes a response with a message containing all of the headers sent in the trace request. |
protected void |
HttpServlet.service(HttpServletRequest req,
HttpServletResponse resp)
This is an HTTP-specific version of the Servlet.service method, which accepts HTTP specific
parameters. |
void |
HttpServlet.service(ServletRequest req,
ServletResponse res)
Implements the high level Servlet.service method by
delegating to the HTTP-specific service method. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |