- 1.设置spring boot的随机端口: server.port=0
- 2.能够压缩HTTP响应:
- 属性文件设置:server.compression.enabled=true
- yaml文件设置:
- server:
compression:
enabled: true
默认的压缩类型:
• text/html
• text/xml
• text/plain
• text/css
• text/javascript
• application/javascript
• application/json
• application/xml
也可以通过配置: server.compression.mime-types 增加类型。
下面的内容截图:
引自:
- spring-boot-reference