mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-21 07:49:14 +00:00
Prior to this commit, our Jetty support for compression was using the `GzipHandler` which is deprecated as of Jetty 12.1. This commit adds two new dependencies to the module and uses the new `CompressionHandler` with the `GzipCompression` algorithm. Closes gh-47134