我正在检查此link,其中解释了压缩数据 但问题是,
所以我四处搜寻,发现PJLfilter 我想出的配置应该是(猜测第一个链接的工作)
Simply add the PLJFilter-zip.jar into your war's WEB-INF/lib
在web.xml中注册gzip过滤器:
<filter>
<filter-name>PJLFilter</filter-name>
<filter-class>com.planetj.servlet.filter.compression.CompressingFilter</filter-class>
</filter>
并将过滤器映射添加为
<filter-mapping>
<filter-name>PJLFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
此外,上述配置对来自服务器的所有内容进行过滤。我不想这样做,但需要让它更具体compressableMimeType="application/x-javascript,text/html,text/css"
(这是tomcat中的相应配置)
如果配置正确,请告诉我。如果我错过任何东西如果有任何解压缩的工作,请告诉我
答案 0 :(得分:2)
您可以将includeContentTypes
PJL配置用于only compress files of content types you specify。