public class GzipHandler extends HandlerWrapper
minGzipSize
initParameter or the minGzipSize is 0(default)mimeTypes
initParameter or if no mimeTypes are defined the
content-type is not "application/gzip"
Compressing the content can greatly improve the network bandwidth usage, but at a cost of memory and CPU cycles. If this handler is used for static content,
then use of efficient direct NIO may be prevented, thus use of the gzip mechanism of the org.eclipse.jetty.servlet.DefaultServlet
is advised instead.
AbstractLifeCycle.AbstractLifeCycleListener
LifeCycle.Listener
Modifier and Type | Field and Description |
---|---|
protected int |
_bufferSize |
protected Set<String> |
_excluded |
protected Set<String> |
_mimeTypes |
protected int |
_minGzipSize |
_handler
_listeners, FAILED, RUNNING, STARTED, STARTING, STOPPED, STOPPING
Constructor and Description |
---|
GzipHandler()
Instantiates a new gzip handler.
|
Modifier and Type | Method and Description |
---|---|
int |
getBufferSize()
Get the buffer size.
|
Set<String> |
getExcluded()
Get the excluded user agents.
|
Set<String> |
getMimeTypes()
Get the mime types.
|
int |
getMinGzipSize()
Get the minimum reponse size.
|
void |
handle(String target,
Request baseRequest,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Handle a request.
|
protected CompressedResponseWrapper |
newGzipResponseWrapper(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Allows derived implementations to replace ResponseWrapper implementation.
|
protected PrintWriter |
newWriter(OutputStream out,
String encoding)
Allows derived implementations to replace PrintWriter implementation.
|
void |
setBufferSize(int bufferSize)
Set the buffer size.
|
void |
setExcluded(Set<String> excluded)
Set the excluded user agents.
|
void |
setExcluded(String excluded)
Set the excluded user agents.
|
void |
setMimeTypes(Set<String> mimeTypes)
Set the mime types.
|
void |
setMimeTypes(String mimeTypes)
Set the mime types.
|
void |
setMinGzipSize(int minGzipSize)
Set the minimum reponse size.
|
destroy, doStart, doStop, expandChildren, getHandler, getHandlers, getNestedHandlerByClass, setHandler, setServer
dump, expandHandler, findContainerOf, getChildHandlerByClass, getChildHandlers, getChildHandlersByClass
dumpThis, getServer
addBean, addBean, contains, dump, dump, dump, dump, dumpObject, dumpStdErr, getBean, getBeans, getBeans, isManaged, manage, removeBean, removeBeans, unmanage
addLifeCycleListener, getState, getState, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
addLifeCycleListener, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop
public void setMimeTypes(Set<String> mimeTypes)
mimeTypes
- the mime types to setpublic void setMimeTypes(String mimeTypes)
mimeTypes
- the mime types to setpublic Set<String> getExcluded()
public void setExcluded(Set<String> excluded)
excluded
- excluded user agents to setpublic void setExcluded(String excluded)
excluded
- excluded user agents to setpublic int getBufferSize()
public void setBufferSize(int bufferSize)
bufferSize
- buffer size to setpublic int getMinGzipSize()
public void setMinGzipSize(int minGzipSize)
minGzipSize
- minimum reponse sizepublic void handle(String target, Request baseRequest, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws IOException, javax.servlet.ServletException
Handler
handle
in interface Handler
handle
in class HandlerWrapper
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. The AbstractHttpConnection.getCurrentConnection()
method can be used access the Request object if required.response
- The response as the Response
object or a wrapper of that request. The AbstractHttpConnection.getCurrentConnection()
method can be used access the Response object if required.IOException
javax.servlet.ServletException
HandlerWrapper.handle(java.lang.String, org.eclipse.jetty.server.Request, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
protected CompressedResponseWrapper newGzipResponseWrapper(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
request
- the requestresponse
- the responseprotected PrintWriter newWriter(OutputStream out, String encoding) throws UnsupportedEncodingException
out
- the outencoding
- the encodingUnsupportedEncodingException
Copyright © 1995-2012 Mort Bay Consulting. All Rights Reserved.