| javax.servlet.http.HttpServlet org.mortbay.jetty.servlet.Invoker
Invoker | public class Invoker extends HttpServlet (Code) | | Dynamic Servlet Invoker.
This servlet invokes anonymous servlets that have not been defined
in the web.xml or by other means. The first element of the pathInfo
of a request passed to the envoker is treated as a servlet name for
an existing servlet, or as a class name of a new servlet.
This servlet is normally mapped to /servlet/*
This servlet support the following initParams:
nonContextServlets If false, the invoker can only load
servlets from the contexts classloader.
This is false by default and setting this
to true may have security implications.
verbose If true, log dynamic loads
All other parameters are copied to the
each dynamic servlet as init parameters
version: $Id: Invoker.java 1344 2006-12-01 22:31:56Z gregw $ author: Greg Wilkins (gregw) |
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)
|
|
|