How to configure cache for static resources in web.xml for Jetty?
I was reading this: http://docs.codehaus.org/display/JETTY/LastModifiedCacheControl It says The Jetty default servlet allows the cache control header to be set for static content by using the cacheControl init parameter using: <init-param> <param-name>cacheControl</param-name> <param-value>max-age=3600,public</param-value> </init-param> However, I am not sure that I am using the default servlet. At least such configuration is not in web.xml: <web-app> <display-name>Wicket QuickStart</display-name> <context-param> <param-name>configuration</param-name> <param-value>development</param-value> <