Tagged Questions
3
votes
2answers
4k views
Add an Expires or a Cache-Control Header in JSP
How do you add an Expires or a Cache-Control Header in JSP. I want to add a far-future expiration date in an include page for my static components such as images, css and .js files.
Any help is ...
2
votes
4answers
4k views
Howto deactivate caching inside a jsp page
I understand there is a HTTP response header directive to disable page caching:
Cache-Control:no-cache
I can modify the header by "hand":
<%response.addHeader("Cache-Control","no-cache");%>
...