I have problem with Tomcat 6.0.29 on EC2 Fedora8 64bit 2.6.21.7-2.ec2.v1.2.fc8xen. There is running java webapp with symlinked static data folder. Something like that:
/home/user/tomcat/webapps/my-app/staticdata
/home/user/staticdata
The issue araised when i am changing data from /home/user/staticdata
. Tomcat just doesn't see those changes, and keep returning the old files. Although when i am trying to get this files from different browser, tomcat returns me most recent ones. I have tried cachingAllowed="false"
in context.xml but it doesn't work.
So, i would like to have hot data redeploy, without tomcat stopping.
Thanks in advance.