jodd.servlet.filter |
Just few common JSP filters.
|
Java Source File Name | Type | Comment |
ByteArrayOutputStreamWrapper.java | Class | Implementation of ServletOutputStream that allows the filter to hold the
Response content for insertion into the cache. |
ByteArrayResponseWrapper.java | Class | |
CharacterEncodingFilter.java | Class | Example filter that sets the character encoding to be used in parsing the
incoming request, either unconditionally or only if the client did not
specify a character encoding. |
CharArrayResponseWrapper.java | Class | A response wrapper that takes everything the client would normally output
and saves it in one big character array. |
GzipFilter.java | Class | Compresses output with gzip, for browsers that supports it.
Configuration of this filter is based on the following initialization
parameters:
- threshold - min number of bytes for compressing
or 0 for no compression at all.
- match - comma separated string patterns to be found
in uri for using gzip.
|
GzipResponseStream.java | Class | |
GzipResponseWrapper.java | Class | Implementation of HttpServletResponseWrapper that works with
the CompressionServletResponseStream implementation.. |