| javax.servlet.http.HttpServlet org.apache.catalina.servlets.InvokerServlet
InvokerServlet | final public class InvokerServlet extends HttpServlet implements ContainerServlet(Code) | | 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.
author: Craig R. McClanahan version: $Revision: 467222 $ $Date: 2006-10-24 05:17:11 +0200 (mar., 24 oct. 2006) $ |
destroy | public void destroy()(Code) | | Finalize this servlet.
|
getWrapper | public Wrapper getWrapper()(Code) | | Return the Wrapper with which we are associated.
|
serveRequest | public void serveRequest(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException(Code) | | Serve the specified request, creating the corresponding response.
After the first time a particular servlet class is requested, it will
be served directly (like any registered servlet) because it will have
been registered and mapped in our associated Context.
Parameters: request - The servlet request we are processing Parameters: response - The servlet response we are creating exception: IOException - if an input/output error occurs exception: ServletException - if a servlet-specified error occurs |
setWrapper | public void setWrapper(Wrapper wrapper)(Code) | | Set the Wrapper with which we are associated.
Parameters: wrapper - The new wrapper |
Methods inherited from javax.servlet.http.HttpServlet | protected void doDelete(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doHead(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doOptions(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doPut(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doTrace(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected long getLastModified(HttpServletRequest req)(Code)(Java Doc) protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException(Code)(Java Doc)
|
|
|