Class ContextHandlerCollection
java.lang.Object
org.eclipse.jetty.util.component.AbstractLifeCycle
org.eclipse.jetty.util.component.ContainerLifeCycle
org.eclipse.jetty.server.handler.AbstractHandler
org.eclipse.jetty.server.handler.AbstractHandlerContainer
org.eclipse.jetty.server.handler.HandlerCollection
org.eclipse.jetty.server.handler.ContextHandlerCollection
- All Implemented Interfaces:
Handler, HandlerContainer, Container, Destroyable, Dumpable, Dumpable.DumpableContainer, LifeCycle
@ManagedObject("Context Handler Collection")
public class ContextHandlerCollection
extends HandlerCollection
This
HandlerCollection is creates a
Map of contexts to it's contained handlers based
on the context path and virtual hosts of any contained ContextHandlers.
The contexts do not need to be directly contained, only children of the contained handlers.
Multiple contexts may have the same context path and they are called in order until one
handles the request.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate static final classprivate static classNested classes/interfaces inherited from class HandlerCollection
HandlerCollection.HandlersNested classes/interfaces inherited from class AbstractHandler
AbstractHandler.ErrorDispatchHandlerNested classes/interfaces inherited from class AbstractLifeCycle
AbstractLifeCycle.AbstractLifeCycleListenerNested classes/interfaces inherited from interface Container
Container.InheritedListener, Container.ListenerNested classes/interfaces inherited from interface Dumpable
Dumpable.DumpableContainerNested classes/interfaces inherited from interface LifeCycle
LifeCycle.Listener -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate Class<? extends ContextHandler> Deprecated.private final SerializedExecutorprivate static final LoggerFields inherited from class HandlerCollection
_handlers -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddContext(String contextPath, String resourceBase) Deprecated.Unused convenience method no longer supported.voiddeployHandler(Handler handler, Callback callback) Thread safe deploy of a Handler.Class<?> Deprecated.Unused convenience mechanism not used.voidhandle(String target, Request baseRequest, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) Handle a request.voidRemap the contexts.protected HandlerCollection.HandlersnewHandlers(Handler[] handlers) voidsetContextClass(Class<? extends ContextHandler> contextClass) Deprecated.Unused convenience mechanism not used.voidundeployHandler(Handler handler, Callback callback) Thread safe undeploy of a Handler.Methods inherited from class HandlerCollection
addHandler, destroy, expandChildren, getHandlers, prependHandler, removeHandler, setHandlers, updateHandlersMethods inherited from class AbstractHandlerContainer
doShutdown, expandHandler, findContainerOf, getChildHandlerByClass, getChildHandlers, getChildHandlersByClass, setServerMethods inherited from class AbstractHandler
doError, doStart, doStop, getServerMethods inherited from class ContainerLifeCycle
addBean, addBean, addEventListener, addManaged, contains, dump, dump, dump, dump, dump, dumpBeans, dumpObject, dumpObjects, dumpStdErr, dumpThis, getBean, getBeans, getBeans, getContainedBeans, getContainedBeans, isAuto, isManaged, isUnmanaged, manage, removeBean, removeBeans, removeEventListener, setBeans, setStopTimeout, start, stop, unmanage, updateBean, updateBean, updateBeansMethods inherited from class AbstractLifeCycle
addLifeCycleListener, getState, getState, getStopTimeout, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop, toStringMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface Dumpable.DumpableContainer
isDumpableMethods inherited from interface LifeCycle
addLifeCycleListener, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop
-
Field Details
-
LOG
-
_serializedExecutor
-
_contextClass
Deprecated.
-
-
Constructor Details
-
ContextHandlerCollection
public ContextHandlerCollection() -
ContextHandlerCollection
-
-
Method Details
-
mapContexts
Remap the contexts. Normally this is not required as context mapping is maintained as a side effect ofHandlerCollection.setHandlers(Handler[])However, if configuration changes in the deep handler structure (eg contextpath is changed), then this call will trigger a remapping. This method is mutually excluded fromdeployHandler(Handler, Callback)andundeployHandler(Handler, Callback) -
newHandlers
- Overrides:
newHandlersin classHandlerCollection
-
handle
public void handle(String target, Request baseRequest, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws IOException, javax.servlet.ServletException Description copied from interface:HandlerHandle a request.- Specified by:
handlein interfaceHandler- Overrides:
handlein classHandlerCollection- Parameters:
target- The target of the request - either a URI or a name.baseRequest- The original unwrapped request object.request- The request either as theRequestobject or a wrapper of that request. Themethod can be used access the Request object if required.HttpConnection.getCurrentConnection().getHttpChannel().getRequest()response- The response as theResponseobject or a wrapper of that request. Themethod can be used access the Response object if required.HttpConnection.getCurrentConnection().getHttpChannel().getResponse()- Throws:
IOException- if unable to handle the request or response processingjavax.servlet.ServletException- if unable to handle the request or response due to underlying servlet issue
-
addContext
Deprecated.Unused convenience method no longer supported.Adds a context handler.- Parameters:
contextPath- The context path to addresourceBase- the base (root) Resource- Returns:
- the ContextHandler just added
-
deployHandler
Thread safe deploy of a Handler.This method is the equivalent of
HandlerCollection.addHandler(Handler), but its execution is non-block and mutually excluded from all other calls todeployHandler(Handler, Callback)andundeployHandler(Handler, Callback). The handler may be added after this call returns.- Parameters:
handler- the handler to deploycallback- Called after handler has been added
-
undeployHandler
Thread safe undeploy of a Handler.This method is the equivalent of
HandlerCollection.removeHandler(Handler), but its execution is non-block and mutually excluded from all other calls todeployHandler(Handler, Callback)andundeployHandler(Handler, Callback). The handler may be removed after this call returns.- Parameters:
handler- The handler to undeploycallback- Called after handler has been removed
-
getContextClass
Deprecated.Unused convenience mechanism not used.- Returns:
- The class to use to add new Contexts
-
setContextClass
Deprecated.Unused convenience mechanism not used.- Parameters:
contextClass- The class to use to add new Contexts
-