Hi to all!
How can I set system property in spring configurations file?
Alesia
Hi to all!
How can I set system property in spring configurations file?
Alesia
Use a PropertyPlaceholderConfigurer. This allows you to keep your enviroment-specific properties defined separately, yet use them in the main Spring configuration.
The ${propertyKeyword} construct allows you to specify the property defined in a separate properties file.
This is described here