Enable HTTP Response Compression
HTTP response compression is supported by Jetty, Tomcat, Reactor Netty, and Undertow.
It can be enabled in application.properties, as follows:
- 
Properties 
- 
YAML 
server.compression.enabled=trueserver:
  compression:
    enabled: trueBy default, responses must be at least 2048 bytes in length for compression to be performed.
You can configure this behavior by setting the server.compression.min-response-size property.
By default, responses are compressed only if their content type is one of the following:
- 
text/html
- 
text/xml
- 
text/plain
- 
text/css
- 
text/javascript
- 
application/javascript
- 
application/json
- 
application/xml
You can configure this behavior by setting the server.compression.mime-types property.