Package org.eclipse.jetty.servlet
Class Invoker
- java.lang.Object
-
- javax.servlet.GenericServlet
-
- javax.servlet.http.HttpServlet
-
- org.eclipse.jetty.servlet.Invoker
-
- All Implemented Interfaces:
java.io.Serializable
,Servlet
,ServletConfig
@Deprecated(since="2021-05-27") public class Invoker extends HttpServlet
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.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
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Invoker()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
init()
Deprecated.A convenience method which can be overridden so that there's no need to callsuper.init(config)
.-
Methods inherited from class javax.servlet.http.HttpServlet
service
-
Methods inherited from class javax.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, log, log
-
-
-
-
Method Detail
-
init
public void init()
Deprecated.Description copied from class:GenericServlet
A convenience method which can be overridden so that there's no need to callsuper.init(config)
.Instead of overriding
GenericServlet.init(ServletConfig)
, simply override this method and it will be called byGenericServlet.init(ServletConfig config)
. TheServletConfig
object can still be retrieved viaGenericServlet.getServletConfig()
.- Overrides:
init
in classGenericServlet
-
-