Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
2  
You want your users to be able to download everything as a gzip? – DaShaun Apr 29 '11 at 15:41
I want as much as possible to be gzipped. I realise that images are already compressed so there is not much saving there – Zubair Apr 29 '11 at 15:42
I can't use the Jetty DefaultServlet as I have a custom servlet. – Zubair Apr 29 '11 at 15:43

2 Answers

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

share|improve this answer
Its just a plain Jetty server with no apache but thanks anyway – Zubair Apr 29 '11 at 16:59

You can use GzipFilter filter. I doing it like this:

<filter>
    <filter-name>GzipFilter</filter-name>
    <filter-class>org.eclipse.jetty.servlets.GzipFilter</filter-class>
    <init-param>
        <param-name>mimeTypes</param-name>
        <param-value>application/javascript,application/x-javascript</param-value>
    </init-param>
</filter>
<filter-mapping>
    <filter-name>GzipFilter</filter-name>
    <url-pattern>/resources/*</url-pattern>
</filter-mapping>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.