Save This Page
Home » apache-tomcat-6.0.16-src » org.apache » catalina » servlets » [javadoc | source]
org.apache.catalina.servlets
public final class: InvokerServlet [javadoc | source]
java.lang.Object
   javax.servlet.GenericServlet
      javax.servlet.http.HttpServlet
         org.apache.catalina.servlets.InvokerServlet

All Implemented Interfaces:
    ContainerServlet, Serializable, Servlet, ServletConfig

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.
Method from org.apache.catalina.servlets.InvokerServlet Summary:
destroy,   doGet,   doHead,   doPost,   getWrapper,   init,   serveRequest,   setWrapper
Methods from javax.servlet.http.HttpServlet:
service
Methods from javax.servlet.GenericServlet:
destroy,   getInitParameter,   getInitParameterNames,   getServletConfig,   getServletContext,   getServletInfo,   getServletName,   init,   init,   log,   log,   service
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.catalina.servlets.InvokerServlet Detail:
 public  void destroy() 
    Finalize this servlet.
 public  void doGet(HttpServletRequest request,
    HttpServletResponse response) throws IOException, ServletException 
    Process a GET request for the specified resource.
 public  void doHead(HttpServletRequest request,
    HttpServletResponse response) throws IOException, ServletException 
    Process a HEAD request for the specified resource.
 public  void doPost(HttpServletRequest request,
    HttpServletResponse response) throws IOException, ServletException 
    Process a POST request for the specified resource.
 public Wrapper getWrapper() 
    Return the Wrapper with which we are associated.
 public  void init() throws ServletException 
    Initialize this servlet.
 public  void serveRequest(HttpServletRequest request,
    HttpServletResponse response) throws IOException, ServletException 
    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.
 public  void setWrapper(Wrapper wrapper) 
    Set the Wrapper with which we are associated.