I'm using:
- Spring Boot 2.1.0 Release
- Webflux (not MVC)
- Websocket
- Reactive Netty
And I would like to compress the returned payload with "GZIP" (or any other compression). I've tried with the configuration in application.yml:
server.compression.enabled: true
But the payload returned is still in plain text.
Does anybody know how to resolve this? Thanks.