Is it possible to modify a .properties file in Tomcat, that is to add properties to it, instead of just reading them?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You can use Properties#load() to load them into a modifiable map-like structure. After modifying using Properties#setProperty() you can just use Properties#store() to save it back.


See also:

link|improve this answer
feedback

Yes, please provide further information regarding what you want to achieve.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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