I have three apps in a Spring 2.5 managed project that share some code and differ in details.
Each application has a property (java.lang.String
) which is used before the application context is built.
Building the app context takes some time and cannot happen first. As such, it's defined in each individual application. This property is duplicated in the context definition since it is also needed there. Can I get rid of that duplication?
Is it possible to inject that property into my application context?