我正在使用Tomcat来压缩我的HTML内容,如下所示:
<Connector port="8080" maxHttpHeaderSize="8192" maxProcessors="150" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="150" connectionTimeout="20000" disableUploadTimeout="true" compression="on" compressionMinSize="128" noCompressionUserAgents="gozilla, traviata" compressableMimeType="text/html" URIEncoding="UTF-8" />
但是,在HTTP标头(通过YSlow观察到)中,我没有看到
Content-Encoding: gzip
导致YSlow得分差。
我所看到的是
HeadersPost Response Headers Server: Apache-Coyote/1.1 Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 5251 Date: Sat, 14 Feb 2009 23:33:51 GMT
我正在运行apache mod_jk Tomcat配置。
如何使用Tomcat压缩HTML内容,并在标题中添加“ Content-Encoding:gzip”?
看一下 http://sourceforge.net/projects/pjl-comp- filter/。
其他自定义解决方案可能会出现内存泄漏。
另外,如果您使用的是mod_jk,则对于这些请求肯定不会使用8080连接器(支持压缩)。