I have three applications in a Spring 2.5 managed project that has common code and different details.
Each application has a property ( java.lang.String), which is used before creating the application context.
Building the application context takes some time and may not be the first. Thus, it is defined in each individual application. This property is duplicated in the context definition, since it is also needed there. Can I get rid of this duplication?
Can I insert this property into my application context?
source
share