How can I disable the static-file cache in Tomcat 8.0.23?
My app.nocache.js
file created by GWT is being cached by Tomcat. Anytime I recompile, Tomcat is serving the old version of the file.
I would be happy to disable Tomcat's cache for any file containing "nocache" in it's name. Fully disabling Tomcat's cache would do as well.
I have tried:
<Resources cachingAllowed="false" cacheMaxSize="0" />
in my WEB-INF/context.xml
file, or:
<Context cachingAllowed="false" cacheMaxSize="0">
...but neither of these attempts have succeeded in disabling the cache.