See the filter-mappings.xml entry for the gzip filter for the URL patterns which will be gzipped. At present this includes .jsp, .js and .css.
@author Greg Luck @author Adam Murdoch @version $Id: GzipFilter.java 744 2008-08-16 20:10:49Z gregluck $
161162163164165166167168169
servletContext.addFilter("lightAdminCharsetFilter", characterEncodingFilter()).addMappingForServletNames(null, false, urlMapping); } private void registerGZipFilter(ServletContext servletContext, String... urlMappings) { GzipFilter gzipFilter = new GzipFilter(); servletContext.addFilter("lightAdminGzipFilter", gzipFilter).addMappingForUrlPatterns(null, false, urlMappings); }