GzipFilter

From Resin 3.0

Revision as of 03:47, 1 December 2005 by Ferg (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


GzipFilter requires Resin Professional

resin-web.xml

<web-app xmlns="http://caucho.com/ns/resin">
  <filter filter-name="gzip"
          filter-class="com.caucho.filters.GzipFilter">
   <init>
     <use-vary>true</use-vary>
   </init>
  </filter>

  <filter-mapping filter-name="gzip">
    <url-pattern>
      <exclude-pattern>*.pdf</exclude-pattern>
      <include-pattern>/*</include-pattern>
    </url-pattern>
  </filter-mapping>
</web-app>

init tags

Attribute Meaning Default
use-vary Set the HTTP Vary header for Gzip requests true
no-cache Disable caching of GZip response false
embed-error-in-output Embeds any thrown exceptions in the gzip output false
Personal tools