I'm building a new web app using Spring MVC 4 (under Tomcat) and I need to know what is the best approach to store the message source in my webapp.
Actually, I'm thinking to use the Spring properties file to manage all labels but I have some questions to ask:
- If I add a new message in my properties file, do I need to redeploy my webapp on Tomcat (restart application on Tomcat)?
- Could be the database driven resource the best approach for this? In this case, i could avoid to redeploy the webapp on Tomcat (because my message resources are managed in my database)...
Thank you!!