Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Do we need to deploy war after changing the property file in java?

share|improve this question
if nothing changes... probably yes :) – david.wosnitza Feb 23 '11 at 15:20
1  
Only if you want the changes to be deployed and become effective. – Joachim Sauer Feb 23 '11 at 15:21
ya changes need to be reflected... that means i would need to deploy war again? – ashwini Feb 23 '11 at 15:26

3 Answers

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.

share|improve this answer

you do need war to deploy if property file is not loaded each time it is needed

share|improve this answer

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:

<Context reloadable="true">

Take a look at the Tomcat Config Docs.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.