Handler, HandlerContainer, Container, Destroyable, Dumpable, LifeCyclepublic class BufferedResponseHandler extends HandlerWrapper
A Handler that can apply a HttpOutput.Interceptor
mechanism to buffer the entire response content until the output is closed.
This allows the commit to be delayed until the response is complete and thus
headers and response status can be changed while writing the body.
Note that the decision to buffer is influenced by the headers and status at the first write, and thus subsequent changes to those headers will not influence the decision to buffer or not.
Note also that there are no memory limits to the size of the buffer, thus this handler can represent an unbounded memory commitment if the content generated can also be unbounded.
AbstractHandler.ErrorDispatchHandlerAbstractLifeCycle.AbstractLifeCycleListenerContainer.InheritedListener, Container.ListenerLifeCycle.ListenerFAILED, RUNNING, STARTED, STARTING, STOP_ON_FAILURE, STOPPED, STOPPING_handler| Constructor | Description |
|---|---|
BufferedResponseHandler() |
| Modifier and Type | Method | Description |
|---|---|---|
IncludeExclude<java.lang.String> |
getMethodIncludeExclude() |
|
IncludeExclude<java.lang.String> |
getMimeIncludeExclude() |
|
IncludeExclude<java.lang.String> |
getPathIncludeExclude() |
|
void |
handle(java.lang.String target,
Request baseRequest,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response) |
Handle a request.
|
protected boolean |
isMimeTypeBufferable(java.lang.String mimetype) |
|
protected boolean |
isPathBufferable(java.lang.String requestURI) |
doError, doStart, doStop, dumpThis, getServerexpandHandler, findContainerOf, getChildHandlerByClass, getChildHandlers, getChildHandlersByClass, setServeraddLifeCycleListener, getState, getState, getStopTimeout, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stopaddBean, addBean, addBean, addEventListener, addManaged, contains, dump, dump, dump, dump, dump, dumpBeans, dumpObject, dumpStdErr, getBean, getBeans, getBeans, getContainedBeans, getContainedBeans, isManaged, manage, removeBean, removeBeans, removeEventListener, setBeans, setStopTimeout, start, stop, unmanage, updateBean, updateBean, updateBeansdestroy, expandChildren, getHandler, getHandlers, insertHandler, setHandleraddLifeCycleListener, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, start, stop, stoppublic IncludeExclude<java.lang.String> getMethodIncludeExclude()
public IncludeExclude<java.lang.String> getPathIncludeExclude()
public IncludeExclude<java.lang.String> getMimeIncludeExclude()
public void handle(java.lang.String target,
Request baseRequest,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
throws java.io.IOException,
javax.servlet.ServletException
Handlerhandle in interface Handlerhandle in class HandlerWrappertarget - 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. The
HttpConnection.getCurrentConnection().getHttpChannel().getRequest()
method can be used access the Request object if required.response - The response as the Response object or a wrapper of that request. The
HttpConnection.getCurrentConnection().getHttpChannel().getResponse()
method can be used access the Response object if required.java.io.IOException - if unable to handle the request or response processingjavax.servlet.ServletException - if unable to handle the request or response due to underlying servlet issueHandlerWrapper.handle(java.lang.String, org.eclipse.jetty.server.Request, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)protected boolean isMimeTypeBufferable(java.lang.String mimetype)
protected boolean isPathBufferable(java.lang.String requestURI)
Copyright © 1995–2018 Webtide. All rights reserved.