how to disable tomcat caching? I use this -
<Context antiJARLocking="true" antiResourceLocking="true" cachingAllowed="false" cacheMaxSize ="0" cacheTTL="1">
in Tomcat/conf/context.xml
but it not helps
how to disable tomcat caching? I use this -
<Context antiJARLocking="true" antiResourceLocking="true" cachingAllowed="false" cacheMaxSize ="0" cacheTTL="1">
in Tomcat/conf/context.xml
but it not helps
I'm not sure what you're using, but in context.xml you can change the value of cachingAllowed
by removing the flag.
Remember to delete the cache folder after that.
Resources :
On the same topic :
Actual problem were antiResourceLocking="true". Looks like conflict with cachingAllowed="false"