Package org.eclipse.jetty.ee10.servlet
Class Invoker
java.lang.Object
jakarta.servlet.GenericServlet
jakarta.servlet.http.HttpServlet
org.eclipse.jetty.ee10.servlet.Invoker
- All Implemented Interfaces:
jakarta.servlet.Servlet
,jakarta.servlet.ServletConfig
,Serializable
public class Invoker
extends jakarta.servlet.http.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 invoker 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 4780 2009-03-17 15:36:08Z jesse $
- See Also:
-
Field Summary
Fields inherited from class jakarta.servlet.http.HttpServlet
LEGACY_DO_HEAD
-
Constructor Summary
-
Method Summary
Methods inherited from class jakarta.servlet.http.HttpServlet
doDelete, doGet, doHead, doOptions, doPost, doPut, doTrace, getLastModified, init, service
Methods inherited from class jakarta.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, log, log
-
Constructor Details
-
Invoker
public Invoker()
-
-
Method Details
-
init
public void init()- Overrides:
init
in classjakarta.servlet.GenericServlet
-
service
protected void service(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) throws jakarta.servlet.ServletException, IOException - Overrides:
service
in classjakarta.servlet.http.HttpServlet
- Throws:
jakarta.servlet.ServletException
IOException
-