I have some large pages and javascript files being downloaded from a web app using Jetty. What is the easiest way to GZIP all my content. I am hoping for something where I just add some lines to web.xml and add a jar file to WEB-INF/lib
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
In case you have your Jetty running behind a Apache Server via mod proxy you can use mod_deflate and then you have nothing to change at your web app at all. See: Jetty/Tutorial/Apache and mod_deflate |
|||
|
|
|
You can use GzipFilter filter. I doing it like this:
|
|||
|
|