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

tomcat启用gzip压缩(包含大文件)

程序员文章站 2022-03-07 21:12:49
修改conf/server.xml文件

修改conf/server.xml文件

<Connector port="8000" protocol="HTTP/1.1"
           connectionTimeout="20000"
           redirectPort="8443" 
           compression="on"   
           useSendfile="false"
           compressionMinSize="2048" 
           noCompressionUserAgents="gozilla, traviata"   
           compressableMimeType="text/html,text/xml,application/javascript,text/css,text/plain,image/jpeg,application/json"/>

其中:
compression=“on” #gzip开关
useSendfile=“false” #如果有大文件需要压缩一定要配置,会消耗服务器CPU资源
官方解释:(bool)Use this attribute to enable or disable sendfile capability. The default value is true. Note that the use of sendfile will disable any compression that Tomcat may otherwise have performed on the response.
compressionMinSize=“2048” #大于2048才压缩
noCompressionUserAgents=“gozilla, traviata” #不压缩的浏览器。这两个浏览器我也不知道是啥,网是所有资料都有让添加,就先加上吧。。。
compressableMimeType=“text/html,text/xml,application/javascript,text/css,text/plain,image/jpeg,application/json” #压缩文件的格式。
也可以在conf/web.xml 中查看确认

本文地址:https://blog.csdn.net/hao500243/article/details/111885342

相关标签: Linux