org.apache.catalina.servlets
public final class InvokerServlet extends HttpServlet implements ContainerServlet
Deprecated: Servlets should be explicitly mapped in web.xml
The default servlet-invoking servlet for most web applications, used to serve requests to servlets that have not been registered in the web application deployment descriptor.Version: $Revision: 717908 $ $Date: 2008-11-15 19:30:48 +0100 (Sat, 15 Nov 2008) $
Method Summary | |
---|---|
void | destroy()
Finalize this servlet. |
void | doGet(HttpServletRequest request, HttpServletResponse response)
Process a GET request for the specified resource.
|
void | doHead(HttpServletRequest request, HttpServletResponse response)
Process a HEAD request for the specified resource.
|
void | doPost(HttpServletRequest request, HttpServletResponse response)
Process a POST request for the specified resource.
|
Wrapper | getWrapper()
Return the Wrapper with which we are associated. |
void | init()
Initialize this servlet. |
void | serveRequest(HttpServletRequest request, HttpServletResponse response)
Serve the specified request, creating the corresponding response.
|
void | setWrapper(Wrapper wrapper)
Set the Wrapper with which we are associated.
|
Parameters: request The servlet request we are processing response The servlet response we are creating
Throws: IOException if an input/output error occurs ServletException if a servlet-specified error occurs
Parameters: request The servlet request we are processing response The servlet response we are creating
Throws: IOException if an input/output error occurs ServletException if a servlet-specified error occurs
Parameters: request The servlet request we are processing response The servlet response we are creating
Throws: IOException if an input/output error occurs ServletException if a servlet-specified error occurs
Parameters: request The servlet request we are processing response The servlet response we are creating
Throws: IOException if an input/output error occurs ServletException if a servlet-specified error occurs
Parameters: wrapper The new wrapper