I have a web application that reads content from a property file. When will this property file be loaded into memory. ie. Once I deploy the application with some content in the prop file, and after deployment , I change the contents of the prop file, will the changes be reflected or do I have to redeploy?
EDIT : An accessor class' static block reads content from the property file, which is a part of a deployed web application. Now after deployment, i change the property file contents. Will the accessor class read the changes or will it take up the old values?
EDIT2 : when the class is reloaded, will it surely take up the new modified file or rather take up the file cached during deployment(if at all it is cached)