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

Tomcat配置gzip压缩提高浏览网站的速度

程序员文章站 2022-07-09 17:31:36
http 压缩可以大大提高浏览网站的速度,它的原理是,在客户端请求网 页后,从服务器端将网页文件压缩,再下载到客户端,由客户端的浏览器负责解 压缩并浏览。相对于普通的浏览过...

http 压缩可以大大提高浏览网站的速度,它的原理是,在客户端请求网 页后,从服务器端将网页文件压缩,再下载到客户端,由客户端的浏览器负责解 压缩并浏览。相对于普通的浏览过程html ,css,javascript , text ,它可以节省40%左右的流量。更为重要的是,它可以对动态生成的,包括cgi、php , jsp , asp , servlet,shtml等输出的网页也能进行压缩,压缩效率惊人

一 对于tomcat5.0以后的版本是支持对输出内容进行压缩的使用的是gzip压缩格式

下 面是tomcat5.5.20 中的$tomcat_home$/conf/server.xml的原内容
< connector port ="80" maxhttpheadersize ="8192"
maxthreads ="150" minsparethreads ="25" maxsparethreads ="75"
enablelookups ="false" redirectport ="8443" acceptcount ="100"
connectiontimeout ="20000" disableuploadtimeout ="true" uriencoding ="utf-8" />
<!-- note : to disable connection timeouts, set connectiontimeout value
to 0 -->

<!-- note : to use gzip compression you could set the following properties :

compression="on"
compressionminsize="2048"
nocompressionuseragents="gozilla, traviata"
compressablemimetype="text/html,text/xml"

-->从上面的第 8行内容可以看出,要使用gzip压缩功能,你可以在connector实例中加上如下 属性即可

1) compression="on" 打开压缩功能
2) compressionminsize="2048" 启用压缩的输出内容大小,这里面默认为2kb
3) nocompressionuseragents="gozilla, traviata" 对于以下的浏览器,不启用压缩
4) compressablemimetype="text/html,text/xml" 压缩类型(默认为text/html,text/xml,text/plain)

我 这里的配置内容为:

<connector port="80" maxhttpheadersize="8192"
maxthreads="150" minsparethreads="25" maxsparethreads="75"
enablelookups="false" redirectport="8443" acceptcount="100"
connectiontimeout="20000" disableuploadtimeout="true" uriencoding="utf-8"
compression="on" 
compressionminsize="2048" 
nocompressionuseragents="gozilla, traviata" 
compressablemimetype="text/html,text/xml,text/javascript,text/css,text/plain" />
<!-- note : to disable connection timeouts, set connectiontimeout value
to 0 -->

<!-- note : to use gzip compression you could set the following properties :

compression="on" 
compressionminsize="2048" 
nocompressionuseragents="gozilla, traviata" 
compressablemimetype="text/html,text/xml"
-->

一旦启用了这个压缩功能后,我们怎么来测试压缩是否有效呢?首先tomcat是根据浏览器请求头中的accept-encoding来判断浏览器是否支持 压缩功能,如果这个值包含有gzip,就表明浏览器支持gzip压缩内容的浏览,所以我们可以用httpclient来写一个这样的简单测试程序

import org.apache.commons.httpclient.httpclient;
import org.apache.commons.httpclient.methods.getmethod;

public class httptester {

public static void main(string[] args) throws exception{
httpclient http = new httpclient();
getmethod get = new getmethod("http://www.dlog.cn/js/prototype.js");
try{
get.addrequestheader("accept-encoding", "gzip,deflate");
get.addrequestheader("user-agent", "mozilla/4.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();
}
}

}

执行这个测试程序,看看它所输出的是什么内容,如果输出的是一些 乱码,以及打印内容的长度远小于实际的长度,那么恭喜你,你的配置生效了,你会发现你网站的浏览速度比以前快多了。