Package io.undertow.servlet.handlers
Class ServletInitialHandler
java.lang.Object
io.undertow.servlet.handlers.ServletInitialHandler
- All Implemented Interfaces:
io.undertow.server.HttpHandler
,ServletDispatcher
public class ServletInitialHandler
extends Object
implements io.undertow.server.HttpHandler, ServletDispatcher
This must be the initial handler in the blocking servlet chain. This sets up the request and response objects,
and attaches them the to exchange.
- Author:
- Stuart Douglas
-
Constructor Summary
ConstructorsConstructorDescriptionServletInitialHandler
(ServletPathMatches paths, io.undertow.server.HttpHandler next, Deployment deployment, ServletContextImpl servletContext) -
Method Summary
Modifier and TypeMethodDescriptionvoid
dispatchMockRequest
(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) Dispatches a mock request to the servlet container.void
dispatchToPath
(io.undertow.server.HttpServerExchange exchange, ServletPathMatch pathInfo, javax.servlet.DispatcherType dispatcherType) Dispatches a servlet request to the specified servlet path, changing the current pathvoid
dispatchToServlet
(io.undertow.server.HttpServerExchange exchange, ServletChain servletchain, javax.servlet.DispatcherType dispatcherType) Dispatches a servlet request to the specified servlet, without changing the current pathio.undertow.server.HttpHandler
getNext()
void
handleRequest
(io.undertow.server.HttpServerExchange exchange)
-
Constructor Details
-
ServletInitialHandler
public ServletInitialHandler(ServletPathMatches paths, io.undertow.server.HttpHandler next, Deployment deployment, ServletContextImpl servletContext)
-
-
Method Details
-
handleRequest
- Specified by:
handleRequest
in interfaceio.undertow.server.HttpHandler
- Throws:
Exception
-
dispatchToPath
public void dispatchToPath(io.undertow.server.HttpServerExchange exchange, ServletPathMatch pathInfo, javax.servlet.DispatcherType dispatcherType) throws Exception Description copied from interface:ServletDispatcher
Dispatches a servlet request to the specified servlet path, changing the current path- Specified by:
dispatchToPath
in interfaceServletDispatcher
- Throws:
Exception
- See Also:
-
dispatchToServlet
public void dispatchToServlet(io.undertow.server.HttpServerExchange exchange, ServletChain servletchain, javax.servlet.DispatcherType dispatcherType) throws Exception Description copied from interface:ServletDispatcher
Dispatches a servlet request to the specified servlet, without changing the current path- Specified by:
dispatchToServlet
in interfaceServletDispatcher
- Throws:
Exception
-
dispatchMockRequest
public void dispatchMockRequest(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException Description copied from interface:ServletDispatcher
Dispatches a mock request to the servlet container.- Specified by:
dispatchMockRequest
in interfaceServletDispatcher
- Parameters:
request
- The requestresponse
- The response- Throws:
javax.servlet.ServletException
-
getNext
public io.undertow.server.HttpHandler getNext()
-