org.eclipse.jetty.servlet
类 Invoker
java.lang.Object
javax.servlet.GenericServlet
javax.servlet.http.HttpServlet
org.eclipse.jetty.servlet.Invoker
- 所有已实现的接口:
- Serializable, Servlet, ServletConfig
public class Invoker
- extends HttpServlet
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
- 版本:
- $Id: Invoker.java 4780 2009-03-17 15:36:08Z jesse $
- 另请参见:
- 序列化表格
|
方法摘要 |
void |
init()
A convenience method which can be overridden so that there's no need
to call super.init(config). |
protected void |
service(HttpServletRequest request,
HttpServletResponse response)
Receives standard HTTP requests from the public
service method and dispatches
them to the doXXX methods defined in
this class. |
| 从类 java.lang.Object 继承的方法 |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Invoker
public Invoker()
init
public void init()
- 从类
GenericServlet 复制的描述
- A convenience method which can be overridden so that there's no need
to call
super.init(config).
Instead of overriding GenericServlet.init(ServletConfig), simply override
this method and it will be called by
GenericServlet.init(ServletConfig config).
The ServletConfig object can still be retrieved via GenericServlet.getServletConfig().
- 覆盖:
- 类
GenericServlet 中的 init
service
protected void service(HttpServletRequest request,
HttpServletResponse response)
throws ServletException,
IOException
- 从类
HttpServlet 复制的描述
- Receives standard HTTP requests from the public
service method and dispatches
them to the doXXX methods defined in
this class. This method is an HTTP-specific version of the
Servlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse) method. There's no
need to override this method.
- 覆盖:
- 类
HttpServlet 中的 service
- 参数:
request - the HttpServletRequest object that
contains the request the client made of
the servletresponse - the HttpServletResponse object that
contains the response the servlet returns
to the client
- 抛出:
ServletException - if the HTTP request
cannot be handled
IOException - if an input or output error occurs
while the servlet is handling the
HTTP request- 另请参见:
Servlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
Copyright © 2013. All Rights Reserved.