com.planetj.servlet.filter.compression
Class CompressingFilter

java.lang.Object
  extended by com.planetj.servlet.filter.compression.CompressingFilter
All Implemented Interfaces:
javax.servlet.Filter

public final class CompressingFilter
extends java.lang.Object
implements javax.servlet.Filter

This filter can, based on HTTP headers in a HttpServletRequest, compress data written to the HttpServletResponse, or decompress data read from the request. When supported by the client browser, this can potentially greatly reduce the number of bytes written across the network from and to the client. As a Filter, this class can also be easily added to any J2EE 1.3+ web application.

Features

Why might you want to use this solution compared to others?

  1. Little in-memory buffering
  2. Handles compressed requests too
  3. Selective compression based on content type, size, or user agent
  4. Exposes compression statistics

Installation

  1. Add the pjl-comp-filter-XX.jar file containing CompressingFilter to your web application's WEB-INF/lib directory.
  2. Add the following entries to your web.xml deployment descriptor:
     <filter>
      <filter-name>CompressingFilter</filter-name>
      <filter-class>com.planetj.servlet.filter.compression.CompressingFilter</filter-class>
     </filter>
     ...
     <filter-mapping>
      <filter-name>CompressingFilter</filter-name>
      <url-pattern>/*</url-pattern>
     </filter-mapping>
     

Configuration

CompressingFilter supports the following parameters:

These values are configured in web.xml as well with init-param elements:

 <filter>
  <filter-name>CompressingFilter</filter-name>
  <filter-class>com.planetj.servlet.filter.compression.CompressingFilter</filter-class>
  <init-param>
   <param-name>debug</param-name>
   <param-value>true</param-value>
  </init-param>
 </filter>
 

Supported compression algorithms

Response

This filter supports the following compression algorithms when compressing data to the repsonse, as specified in the "Accept-Encoding" HTTP request header:

Request

This filter supports the following compression algorithms when decompressing data from the request body, as specified in the "Content-Encoding" HTTP request header:

Controlling runtime behavior

An application may force the encoding / compression used by setting an "Accept-Encoding" value into the request as an attribute under the key FORCE_ENCODING_KEY. Obviously this has to be set upstream from the filter, not downstream.

Caveats and Notes

The filter requires Java 5 and J2EE 1.4 or better.

Note that if this filter decides that it should try to compress the response, it will close the response (whether or not it ends up compressing the response). No more can be written to the response after this filter has been applied; this should never be necessary anyway. Put this filter ahead of any filters that might try to write to the repsonse, since presumably you want this content compressed too anyway.

If a OutputStream.flush() occurs before the filter has decided whether to compress or not, it will be forced into compression mode.

The filter will not compress if the response sets Cache-Control: no-transform header in the response.

The filter attempts to modify the ETag response header, if present, when compressing. This is because the compressed response must be considered a separate entity by caches. It simply appends, for example, "-gzip" to the ETag header value when compressing with gzip. This is not guaranteed to work in all containers, in the sense that some containers may not properly associated this ETag with the compressed content and simply return the response again.

The filter always sets the Vary response header to indicate that a different response may be returned based on the Accept-Encoding header of the request.

Since:
1.0
Author:
Sean Owen

Field Summary
static java.lang.String COMPRESSED_KEY
          A request attribute is set under this key with a non-null value if this filter has applied compression to the response.
static java.lang.String FORCE_ENCODING_KEY
          One may force the filter to use a particular encoding by setting its value as an attribute of the ServletRequest passed to this filter, under this key.
 
Constructor Summary
CompressingFilter()
           
 
Method Summary
 void destroy()
           
 void doFilter(javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, javax.servlet.FilterChain chain)
           
 void init(javax.servlet.FilterConfig config)
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

FORCE_ENCODING_KEY

public static final java.lang.String FORCE_ENCODING_KEY
One may force the filter to use a particular encoding by setting its value as an attribute of the ServletRequest passed to this filter, under this key. The value should be a valid "Accept-Encoding" header value, like "gzip". Specify "identity" to force no compression.

Since:
1.2
See Also:
Constant Field Values

COMPRESSED_KEY

public static final java.lang.String COMPRESSED_KEY
A request attribute is set under this key with a non-null value if this filter has applied compression to the response. Upstream filters may check for this flag. Note that if the response has been compressed, then it will be closed by the time this filter finishes as well.

Since:
1.2
See Also:
Constant Field Values
Constructor Detail

CompressingFilter

public CompressingFilter()
Method Detail

init

public void init(javax.servlet.FilterConfig config)
          throws javax.servlet.ServletException
Specified by:
init in interface javax.servlet.Filter
Throws:
javax.servlet.ServletException

doFilter

public void doFilter(javax.servlet.ServletRequest request,
                     javax.servlet.ServletResponse response,
                     javax.servlet.FilterChain chain)
              throws java.io.IOException,
                     javax.servlet.ServletException
Specified by:
doFilter in interface javax.servlet.Filter
Throws:
java.io.IOException
javax.servlet.ServletException

destroy

public void destroy()
Specified by:
destroy in interface javax.servlet.Filter

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object