spring boot 设置 gzip 压缩

最近在开发的项目中,因为查询的内容比较多,所以导致浏览器的 waiting 时间比较长。所以就想着如何优化一下,然后就配置了一下项目,开启 gzip 压缩。因为现在大部分的浏览器都支持 gzip 压缩技术的。

http的请求头 Accept-Encoding:gzip, deflate 就表示这次请求可以接受 gzip 压缩后的数据。

有两种可供选择:

一、spring boot 项目中开启 gzip 的方式如下:

# 在application.properties中加入如下配置:

server.compression.enabled=true
server.compression.mime-types=application/javascript,text/css,application/json,application/xml,text/html,text/xml,text/plain
# 或者在application.yml 中加入如下配置:
server:
  compression:
    enabled: true
    mime-types: application/javascript,text/css,application/json,application/xml,text/html,text/xml,text/plain

二、tomcat 开启 gzip 压缩

tomcat中使用gzip需要进行配置,在server.xml中,在Connector标签中加入如下属性

compression="on"
compressionMinSize="2048"
compressableMimeType="text/html,text/css,text/javascript"

参考文章

你可能感兴趣的:(java)