Is there a way, at the web server level (web.xml) to set headers for all transactions? Specifically, I would like to do this:
response.setHeader("Cache-Control", "no-cache, no-store");
response.setDateHeader("Expires", -1);
at the application level. I seem to recall that headers could be set in the Web.xml. Are there other solutions?