tomcat启用gzip压缩(包含大文件)
修改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
上一篇: JavaScript第一次学习
下一篇: 最开始-我的第一篇博客