Injecting properties to a ApplicationContext at deploy time
I have a web application that uses spring mvc and I would like to provide values for the placeholders in my ApplicationContext at deploy time. I don't want them to be baked into the war file. Also, I am looking for something that allows me to specify the values per deployment so that if I run two applications on the same tcServer instance, and those 2 applications happen to use some of the same placeholder names, I can provide each deployment with a different set of values for its placeholders.
Is there a standard way of handling this ?