Package org.eclipse.jetty.server.handler
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 ThisHandlerCollectionis creates a Map of contexts to it's contained handlers based on the context path and virtual hosts of any containedContextHandlers. 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 classes/interfaces inherited from class org.eclipse.jetty.server.handler.HandlerCollectionHandlerCollection.Handlers
 - 
Nested classes/interfaces inherited from class org.eclipse.jetty.server.handler.AbstractHandlerAbstractHandler.ErrorDispatchHandler
 - 
Nested classes/interfaces inherited from class org.eclipse.jetty.util.component.AbstractLifeCycleAbstractLifeCycle.AbstractLifeCycleListener
 - 
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.ContainerContainer.InheritedListener, Container.Listener
 - 
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.DumpableDumpable.DumpableContainer
 - 
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.LifeCycleLifeCycle.Listener
 
- 
 - 
Field Summary- 
Fields inherited from class org.eclipse.jetty.server.handler.HandlerCollection_handlers
 
- 
 - 
Constructor SummaryConstructors Constructor Description ContextHandlerCollection()ContextHandlerCollection(ContextHandler... contexts)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description ContextHandleraddContext(java.lang.String contextPath, java.lang.String resourceBase)Deprecated.Unused convenience method no longer supported.voiddeployHandler(Handler handler, Callback callback)Thread safe deploy of a Handler.java.lang.Class<?>getContextClass()Deprecated.Unused convenience mechanism not used.voidhandle(java.lang.String target, Request baseRequest, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)Handle a request.voidmapContexts()Remap the contexts.protected HandlerCollection.HandlersnewHandlers(Handler[] handlers)voidsetContextClass(java.lang.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 org.eclipse.jetty.server.handler.HandlerCollectionaddHandler, destroy, expandChildren, getHandlers, prependHandler, removeHandler, setHandlers, updateHandlers
 - 
Methods inherited from class org.eclipse.jetty.server.handler.AbstractHandlerContainerdoShutdown, expandHandler, findContainerOf, getChildHandlerByClass, getChildHandlers, getChildHandlersByClass, setServer
 - 
Methods inherited from class org.eclipse.jetty.server.handler.AbstractHandlerdoError, doStart, doStop, getServer
 - 
Methods inherited from class org.eclipse.jetty.util.component.ContainerLifeCycleaddBean, 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, updateBeans
 - 
Methods inherited from class org.eclipse.jetty.util.component.AbstractLifeCycleaddLifeCycleListener, getState, getState, getStopTimeout, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop, toString
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface org.eclipse.jetty.util.component.Dumpable.DumpableContainerisDumpable
 - 
Methods inherited from interface org.eclipse.jetty.util.component.LifeCycleaddLifeCycleListener, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop
 
- 
 
- 
- 
- 
Constructor Detail- 
ContextHandlerCollectionpublic ContextHandlerCollection() 
 - 
ContextHandlerCollectionpublic ContextHandlerCollection(ContextHandler... contexts) 
 
- 
 - 
Method Detail- 
mapContexts@ManagedOperation("Update the mapping of context path to context") public void 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)
 - 
newHandlersprotected HandlerCollection.Handlers newHandlers(Handler[] handlers) - Overrides:
- newHandlersin class- HandlerCollection
 
 - 
handlepublic void handle(java.lang.String target, Request baseRequest, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws java.io.IOException, javax.servlet.ServletExceptionDescription copied from interface:HandlerHandle a request.- Specified by:
- handlein interface- Handler
- Overrides:
- handlein class- HandlerCollection
- Parameters:
- target- The target of the request - either a URI or a name.
- baseRequest- The original unwrapped request object.
- request- The request either as the- Requestobject or a wrapper of that request. The- HttpConnection.getCurrentConnection().- getHttpChannel().- getRequest()
- response- The response as the- Responseobject or a wrapper of that request. The- HttpConnection.getCurrentConnection().- getHttpChannel().- getResponse()
- Throws:
- java.io.IOException- if unable to handle the request or response processing
- javax.servlet.ServletException- if unable to handle the request or response due to underlying servlet issue
 
 - 
addContext@Deprecated public ContextHandler addContext(java.lang.String contextPath, java.lang.String resourceBase) Deprecated.Unused convenience method no longer supported.Adds a context handler.- Parameters:
- contextPath- The context path to add
- resourceBase- the base (root) Resource
- Returns:
- the ContextHandler just added
 
 - 
deployHandlerpublic void deployHandler(Handler handler, Callback callback) 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 deploy
- callback- Called after handler has been added
 
 - 
undeployHandlerpublic void undeployHandler(Handler handler, Callback callback) 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 undeploy
- callback- Called after handler has been removed
 
 - 
getContextClass@Deprecated public java.lang.Class<?> getContextClass() Deprecated.Unused convenience mechanism not used.- Returns:
- The class to use to add new Contexts
 
 - 
setContextClass@Deprecated public void setContextClass(java.lang.Class<? extends ContextHandler> contextClass) Deprecated.Unused convenience mechanism not used.- Parameters:
- contextClass- The class to use to add new Contexts
 
 
- 
 
-