Class ServletHandler

All Implemented Interfaces:
Handler, HandlerContainer, Container, Destroyable, Dumpable, Dumpable.DumpableContainer, LifeCycle

@ManagedObject("Servlet Handler") public class ServletHandler extends ScopedHandler
Servlet HttpHandler.

This handler maps requests to servlets that implement the javax.servlet.http.HttpServlet API.

This handler does not implement the full J2EE features and is intended to be used directly when a full web application is not required. If a Web application is required, then this handler should be used as part of a org.eclipse.jetty.webapp.WebAppContext.

Unless run as part of a ServletContextHandler or derivative, the initialize() method must be called manually after start().

  • Field Details Link icon

  • Constructor Details Link icon

    • ServletHandler Link icon

      public ServletHandler()
      Constructor.
  • Method Details Link icon

    • isDumpable Link icon

      public boolean isDumpable(Object o)
    • dump Link icon

      public void dump(Appendable out, String indent) throws IOException
      Description copied from interface: Dumpable
      Dump this object (and children) into an Appendable using the provided indent after any new lines. The indent should not be applied to the first object dumped.
      Specified by:
      dump in interface Dumpable
      Overrides:
      dump in class ContainerLifeCycle
      Parameters:
      out - The appendable to dump to
      indent - The indent to apply after any new lines.
      Throws:
      IOException - if unable to write to Appendable
    • doStart Link icon

      protected void doStart() throws Exception
      Description copied from class: ContainerLifeCycle
      Starts the managed lifecycle beans in the order they were added.
      Overrides:
      doStart in class ScopedHandler
      Throws:
      Exception - If there was a problem starting. Will cause a transition to FAILED state
    • isEnsureDefaultServlet Link icon

      public boolean isEnsureDefaultServlet()
      Returns:
      true if ServletHandler always has a default servlet, using ServletHandler.Default404Servlet if no other default servlet is configured.
    • setEnsureDefaultServlet Link icon

      public void setEnsureDefaultServlet(boolean ensureDefaultServlet)
      Parameters:
      ensureDefaultServlet - true if ServletHandler always has a default servlet, using ServletHandler.Default404Servlet if no other default servlet is configured.
    • start Link icon

      protected void start(LifeCycle l) throws Exception
      Description copied from class: ContainerLifeCycle
      Starts the given lifecycle.
      Overrides:
      start in class ContainerLifeCycle
      Parameters:
      l - the lifecycle to start
      Throws:
      Exception - if unable to start lifecycle
    • stop Link icon

      protected void stop(LifeCycle l) throws Exception
      Description copied from class: ContainerLifeCycle
      Stops the given lifecycle.
      Overrides:
      stop in class ContainerLifeCycle
      Parameters:
      l - the lifecycle to stop
      Throws:
      Exception - if unable to stop the lifecycle
    • doStop Link icon

      protected void doStop() throws Exception
      Description copied from class: ContainerLifeCycle
      Stops the managed lifecycle beans in the reverse order they were added.
      Overrides:
      doStop in class AbstractHandler
      Throws:
      Exception - If there was a problem stopping. Will cause a transition to FAILED state
    • getIdentityService Link icon

      protected IdentityService getIdentityService()
    • getFilterMappings Link icon

      @ManagedAttribute(value="filters", readonly=true) public FilterMapping[] getFilterMappings()
    • getFilters Link icon

      @ManagedAttribute(value="filters", readonly=true) public FilterHolder[] getFilters()
    • getHolderEntry Link icon

      Deprecated.
      ServletHolder matching path.
      Parameters:
      target - Path within _context or servlet name
      Returns:
      PathMap Entries pathspec to ServletHolder
    • getServletContext Link icon

      public javax.servlet.ServletContext getServletContext()
    • getServletContextHandler Link icon

      public ServletContextHandler getServletContextHandler()
    • getServletMappings Link icon

      @ManagedAttribute(value="mappings of servlets", readonly=true) public ServletMapping[] getServletMappings()
    • getServletMapping Link icon

      public ServletMapping getServletMapping(String pathSpec)
      Get the ServletMapping matching the path
      Parameters:
      pathSpec - the path spec
      Returns:
      the servlet mapping for the path spec (or null if not found)
    • getServlets Link icon

      @ManagedAttribute(value="servlets", readonly=true) public ServletHolder[] getServlets()
    • getServlets Link icon

      public List<ServletHolder> getServlets(Class<?> clazz)
    • getServlet Link icon

      public ServletHolder getServlet(String name)
    • doScope Link icon

      public void doScope(String target, Request baseRequest, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws IOException, javax.servlet.ServletException
      Description copied from class: ScopedHandler
      Scope the handler

      Derived implementations should call ScopedHandler.nextScope(String, Request, HttpServletRequest, HttpServletResponse)

      Overrides:
      doScope in class ScopedHandler
      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 Request object or a wrapper of that request.
      response - The response as the Response object or a wrapper of that request.
      Throws:
      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
    • doHandle Link icon

      public void doHandle(String target, Request baseRequest, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws IOException, javax.servlet.ServletException
      Description copied from class: ScopedHandler
      Do the handler work within the scope.

      Derived implementations should call ScopedHandler.nextHandle(String, Request, HttpServletRequest, HttpServletResponse)

      Specified by:
      doHandle in class ScopedHandler
      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 Request object or a wrapper of that request.
      response - The response as the Response object or a wrapper of that request.
      Throws:
      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
    • getMatchedServlet Link icon

      public MatchedResource<ServletHandler.MappedServlet> getMatchedServlet(String target)
      ServletHolder matching target path.
      Parameters:
      target - Path within _context or servlet name
      Returns:
      MatchedResource, pointing to the MappedResource for the ServletHolder, and also the pathspec specific name/info sections for the match. Named servlets have a null PathSpec and MatchedResource.
    • getMappedServlet Link icon

      @Deprecated public ServletHandler.MappedServlet getMappedServlet(String target)
      Deprecated.
      ServletHolder matching path.
      Parameters:
      target - Path within _context or servlet name
      Returns:
      MappedResource to the ServletHolder. Named servlets have a null PathSpec
    • getFilterChain Link icon

      protected javax.servlet.FilterChain getFilterChain(Request baseRequest, String pathInContext, ServletHolder servletHolder)
    • newFilterChain Link icon

      protected javax.servlet.FilterChain newFilterChain(FilterHolder filterHolder, javax.servlet.FilterChain chain)
      Create a FilterChain that calls the passed filter with the passed chain
      Parameters:
      filterHolder - The filter to invoke
      chain - The chain to pass to the filter
      Returns:
      A FilterChain that invokes the filter with the chain
    • invalidateChainsCache Link icon

      protected void invalidateChainsCache()
    • isAvailable Link icon

      public boolean isAvailable()
      Returns:
      true if the handler is started and there are no unavailable servlets
    • setStartWithUnavailable Link icon

      public void setStartWithUnavailable(boolean start)
      Parameters:
      start - True if this handler will start with unavailable servlets
    • isAllowDuplicateMappings Link icon

      public boolean isAllowDuplicateMappings()
      Returns:
      the allowDuplicateMappings
    • setAllowDuplicateMappings Link icon

      public void setAllowDuplicateMappings(boolean allowDuplicateMappings)
      Set the allowDuplicateMappings to set.
      Parameters:
      allowDuplicateMappings - the allowDuplicateMappings to set
    • isStartWithUnavailable Link icon

      public boolean isStartWithUnavailable()
      Returns:
      True if this handler will start with unavailable servlets
    • initialize Link icon

      public void initialize() throws Exception
      Initialize filters and load-on-startup servlets.
      Throws:
      Exception - if unable to initialize
    • isInitialized Link icon

      public boolean isInitialized()
      Returns:
      true if initialized has been called, false otherwise
    • initializeHolders Link icon

      protected void initializeHolders(Collection<? extends BaseHolder<?>> holders)
    • isFilterChainsCached Link icon

      public boolean isFilterChainsCached()
      Returns:
      whether the filter chains are cached.
    • addListener Link icon

      public void addListener(ListenerHolder listener)
      Add a holder for a listener
      Parameters:
      listener - the listener for the holder
    • getListeners Link icon

      public ListenerHolder[] getListeners()
    • setListeners Link icon

      public void setListeners(ListenerHolder[] holders)
    • newListenerHolder Link icon

      public ListenerHolder newListenerHolder(Source source)
    • newServletHolder Link icon

      public ServletHolder newServletHolder(Source source)
      Add a new servlet holder
      Parameters:
      source - the holder source
      Returns:
      the servlet holder
    • addServletWithMapping Link icon

      public ServletHolder addServletWithMapping(String className, String pathSpec)
      Convenience method to add a servlet.
      Parameters:
      className - the class name
      pathSpec - the path spec
      Returns:
      The servlet holder.
    • addServletWithMapping Link icon

      public ServletHolder addServletWithMapping(Class<? extends javax.servlet.Servlet> servlet, String pathSpec)
      Convenience method to add a servlet.
      Parameters:
      servlet - the servlet class
      pathSpec - the path spec
      Returns:
      The servlet holder.
    • addServletWithMapping Link icon

      public void addServletWithMapping(ServletHolder servlet, String pathSpec)
      Convenience method to add a servlet.
      Parameters:
      servlet - servlet holder to add
      pathSpec - servlet mappings for the servletHolder
    • addServlet Link icon

      public void addServlet(ServletHolder holder)
      Convenience method to add a pre-constructed ServletHolder.
      Parameters:
      holder - the servlet holder
    • addServletMapping Link icon

      public void addServletMapping(ServletMapping mapping)
      Convenience method to add a pre-constructed ServletMapping.
      Parameters:
      mapping - the servlet mapping
    • setServletSecurity Link icon

      public Set<String> setServletSecurity(javax.servlet.ServletRegistration.Dynamic registration, javax.servlet.ServletSecurityElement servletSecurityElement)
    • newFilterHolder Link icon

      public FilterHolder newFilterHolder(Source source)
    • getFilter Link icon

      public FilterHolder getFilter(String name)
    • addFilterWithMapping Link icon

      public FilterHolder addFilterWithMapping(Class<? extends javax.servlet.Filter> filter, String pathSpec, EnumSet<javax.servlet.DispatcherType> dispatches)
      Convenience method to add a filter.
      Parameters:
      filter - class of filter to create
      pathSpec - filter mappings for filter
      dispatches - see FilterMapping.setDispatches(int)
      Returns:
      The filter holder.
    • addFilterWithMapping Link icon

      public FilterHolder addFilterWithMapping(String className, String pathSpec, EnumSet<javax.servlet.DispatcherType> dispatches)
      Convenience method to add a filter.
      Parameters:
      className - of filter
      pathSpec - filter mappings for filter
      dispatches - see FilterMapping.setDispatches(int)
      Returns:
      The filter holder.
    • addFilterWithMapping Link icon

      public void addFilterWithMapping(FilterHolder holder, String pathSpec, EnumSet<javax.servlet.DispatcherType> dispatches)
      Convenience method to add a filter.
      Parameters:
      holder - filter holder to add
      pathSpec - filter mappings for filter
      dispatches - see FilterMapping.setDispatches(int)
    • addFilterWithMapping Link icon

      public FilterHolder addFilterWithMapping(Class<? extends javax.servlet.Filter> filter, String pathSpec, int dispatches)
      Convenience method to add a filter.
      Parameters:
      filter - class of filter to create
      pathSpec - filter mappings for filter
      dispatches - see FilterMapping.setDispatches(int)
      Returns:
      The filter holder.
    • addFilterWithMapping Link icon

      public FilterHolder addFilterWithMapping(String className, String pathSpec, int dispatches)
      Convenience method to add a filter.
      Parameters:
      className - of filter
      pathSpec - filter mappings for filter
      dispatches - see FilterMapping.setDispatches(int)
      Returns:
      The filter holder.
    • addFilterWithMapping Link icon

      public void addFilterWithMapping(FilterHolder holder, String pathSpec, int dispatches)
      Convenience method to add a filter.
      Parameters:
      holder - filter holder to add
      pathSpec - filter mappings for filter
      dispatches - see FilterMapping.setDispatches(int)
    • addFilter Link icon

      public void addFilter(FilterHolder filter, FilterMapping filterMapping)
      Convenience method to add a filter and mapping
      Parameters:
      filter - the filter holder
      filterMapping - the filter mapping
    • addFilter Link icon

      public void addFilter(FilterHolder filter)
      Convenience method to add a preconstructed FilterHolder
      Parameters:
      filter - the filter holder
    • prependFilter Link icon

      public void prependFilter(FilterHolder filter)
      Convenience method to add a preconstructed FilterHolder
      Parameters:
      filter - the filter holder
    • addFilterMapping Link icon

      public void addFilterMapping(FilterMapping mapping)
      Convenience method to add a preconstructed FilterMapping
      Parameters:
      mapping - the filter mapping
    • prependFilterMapping Link icon

      public void prependFilterMapping(FilterMapping mapping)
      Convenience method to add a preconstructed FilterMapping
      Parameters:
      mapping - the filter mapping
    • removeFilterHolder Link icon

      public void removeFilterHolder(FilterHolder holder)
    • removeFilterMapping Link icon

      public void removeFilterMapping(FilterMapping mapping)
    • updateNameMappings Link icon

      protected void updateNameMappings()
    • asPathSpec Link icon

      protected PathSpec asPathSpec(String pathSpec)
    • updateMappings Link icon

      protected void updateMappings()
    • notFound Link icon

      protected void notFound(Request baseRequest, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws IOException, javax.servlet.ServletException
      Throws:
      IOException
      javax.servlet.ServletException
    • containsFilterHolder Link icon

      protected boolean containsFilterHolder(FilterHolder holder)
    • containsServletHolder Link icon

      protected boolean containsServletHolder(ServletHolder holder)
    • setFilterChainsCached Link icon

      public void setFilterChainsCached(boolean filterChainsCached)
      Parameters:
      filterChainsCached - The filterChainsCached to set.
    • setFilterMappings Link icon

      public void setFilterMappings(FilterMapping[] filterMappings)
      Parameters:
      filterMappings - The filterMappings to set.
    • setFilters Link icon

      public void setFilters(FilterHolder[] holders)
    • setServletMappings Link icon

      public void setServletMappings(ServletMapping[] servletMappings)
      Parameters:
      servletMappings - The servletMappings to set.
    • setServlets Link icon

      public void setServlets(ServletHolder[] holders)
      Set Servlets.
      Parameters:
      holders - Array of servlets to define
    • getMaxFilterChainsCacheSize Link icon

      public int getMaxFilterChainsCacheSize()
      Returns:
      The maximum entries in a filter chain cache.
    • setMaxFilterChainsCacheSize Link icon

      public void setMaxFilterChainsCacheSize(int maxFilterChainsCacheSize)
      Set the maximum filter chain cache size. Filter chains are cached if isFilterChainsCached() is true. If the max cache size is greater than zero, then the cache is flushed whenever it grows to be this size.
      Parameters:
      maxFilterChainsCacheSize - the maximum number of entries in a filter chain cache.