欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

如何验证Tomcat Gzip配置是否生效的方法

程序员文章站 2022-10-29 10:39:31
我们在使用tomcat优化配置时,都会开始tomcat的gzip压缩功能,配置如下:

我们在使用tomcat优化配置时,都会开始tomcat的gzip压缩功能,配置如下:

  <connector port="9080" protocol="http/1.1" 
        connectiontimeout="20000" 
        redirectport="8443" uriencoding="utf-8" usebodyencodingforuri="true"
        compression="on" 
        compressionminsize="2048" 
        nocompressionuseragents="gozilla, traviata" 
        compressablemimetype="text/html,text/xml,text/javascript,text/css,text/plain,image/gif,image/jpg" 
        
        />

即把以下内容加入到 apache-tomcat-6\conf\server.xml 中的connector标签中

  <!-- note : to use gzip compression you could set the following properties : 
           compression="on" 
        compressionminsize="2048" 
        nocompressionuseragents="gozilla, traviata" 
        compressablemimetype="text/html,text/xml,text/javascript,text/css,text/plain,image/gif,image/jpg" 
   --> 

参数说明:

 compression="on" 打开压缩功能
compressionminsize="2048" 启用压缩的输出内容大小,当被压缩对象的大小>=该值时才会被压缩,这里面默认为2kb
nocompressionuseragents="gozilla, traviata" 对于以下的浏览器,不启用压缩
compressablemimetype="text/html,text/xml,text/javascript,text/css,text/plain,image/gif,image/jpg" 压缩类型

注意:tomcat7以后,js文件的mimetype类型变为了application/javascript,具体的tomcat7定义的类型可以在:conf/web.xml文件中找到。

我的tomcat6所以 还是 text/javascript

tomcat7 js文件的mimetype类型变为了application/javascript
自己注意 配错了起不到压缩的作用哦

那么我们如何测试配置的gzip压缩功能生效了呢?
答案就是:使用apache httpclient访问该tomcat加载项目中的一个静态资源(比如一个js文件),然后打印请求的资源内容 或 资源contentlength,如果打印的资源内容为乱码 或 contentlength为 -1,则说明gzip生效了。

import org.apache.commons.httpclient.httpclient; 
import org.apache.commons.httpclient.methods.getmethod; 
/**
 * @classname:     gziptest.java
 * @description:   todo(用一句话描述该文件做什么) 
 * 
 * @author         administrator
 * @e-mail         809044093@qq.com 
 * @version        v1.0  
 * @date           2014-3-27 上午09:07:00 
 */
public class gziptest { 


/** 
* @param args 
*/ 
public static void main(string[] args) throws exception{ 
  httpclient http = new httpclient(); 
  getmethod get = new getmethod("http://127.0.0.1:9080/membercms/style/shop/js/base.js"); 
  try{ 
  get.addrequestheader("accept-encoding", "gzip,deflate"); 
  get.addrequestheader("user-agent", "mozilla/5.0 (compatible; msie 6.0; windows nt 5.0; alexa toolbar; maxthon 2.0)"); 
  int er = http.executemethod(get); 
  if(er==200){ 
   system.out.println(get.getresponsecontentlength()); 
   string html = get.getresponsebodyasstring(); 
   system.out.println(html); 
   system.out.println(html.getbytes().length); 
  } 
}finally{ 
   get.releaseconnection(); 
   
} 
} 


} 

控制台结果为乱码

说明配置压缩网站的信息成功,此法可能对服务器cpu有些损耗。

apache 开启gzip压缩配置:

去掉以下两个 注释#

loadmodule deflate_module modules/mod_deflate.so
loadmodule headers_module modules/mod_headers.so

在 httpd.conf最后加入

#apache gzip
<location /> 

# insert filter 

setoutputfilter deflate 

# netscape 4.x has some problems... 

browsermatch ^mozilla/4 gzip-only-text/html 

# netscape 4.06-4.08 have some more problems 

browsermatch ^mozilla/4\.0[678] no-gzip 

# msie masquerades as netscape, but it is fine 

browsermatch \bmsie !no-gzip !gzip-only-text/html 

# don't compress images 
setenvifnocase request_uri .(?:gif|jpe?g|png)$ no-gzip dont-vary
setenvifnocase request_uri .(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary
setenvifnocase request_uri .(?:pdf|doc|avi|mov|mp3|rm)$ no-gzip dont-vary

addoutputfilterbytype deflate text/html text/plain text/xml text/css text/js
# make sure proxies don't deliver the wrong content 

#header append vary user-agent env=!dont-vary 

</location> 

设置完成之后 访问http://tool.chinaz.com/gzips/ 输入你的网站域名 检测压缩情况。