I want to set the "Expires" HTTP response header when my Glassfish server serves static resources like Javascript and image files. (because to force the browser to cache them)
How can I do this in Glassfish V 3.0.1 server?
|
I want to set the "Expires" HTTP response header when my Glassfish server serves static resources like Javascript and image files. (because to force the browser to cache them) How can I do this in Glassfish V 3.0.1 server?
| ||||
feedback
|
|
One way is using HttpServletResponseWrapper Another approch is using filter , here is very good article :Caching static resources in glassfish | |||||||||
feedback
|
|
Are you referencing resources from secure page?? Then The answer of Jigar Joshi i.e. http://blogs.sun.com/cwebster/entry/caching_static_resources_in_glassfish will not work... If you are having secure page then following will help you out. Static resources are not cached referenced from glassfish secure page... | |||
|
feedback
|
|
Glassfish uses catalina for servlet container. Extend the DefaultServlet, override something like http://tomcat.apache.org/tomcat-7.0-doc/api/org/apache/catalina/servlets/DefaultServlet.html Mount your own default servlet to
| |||
|
feedback
|