Do we need to deploy war after changing the property file in java?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
At least you may have to restart the application so that it reads the new property file. So re-deploying the entire application may not be necessary. |
|||
|
|
|
Yes, unless you make your context reloadable. To do that update your conf/context.xml, adding the "reloadable" attribute to the root node like so:
Take a look at the Tomcat Config Docs. |
|||
|
|