Overriding a packaged Spring application properties file via an external file
Quite a common use case when developing a Spring application is that you want to have multiple versions of configuration properties depending on where you are deploying to, for example, database URLs or feature flag may be environment specific on dev, qa, production etc.
Like most Spring development tasks, there are several way to solve the problem. My preference is based on the following assumptions and preferences:
- We create a default configuration properties file (e.g. ‘appConfig.properties’) and package this within the deployable artifact (JAR or WAR etc)
- This file will contain a sensible set of default ‘baseline’ properties that the application requires to run successfully
- This default configuration file will typically be used for development purposes i.e. the appConfig.properties included within the application code will allow the application to work ‘out of the box’ on a well configured local development box
- We are using Maven to package our application, and therefore we place the appConfig.properties file in the root level of the src/main/resources directory – this doesn’t mean you have to use Maven, but you will have to ensure that your application packaging process includes the properties files in a location that is on the classpath
- We want to override properties in the baseline appConfig.properties file via an external file located in the deployed application’s working directory
- We typically name this file appConfigOverride.properties
- We may not override all of the default properties, and therefore we want any properties not present in the override file to default to the values in the baseline appConfig.properties file
- It is possible to override application properties by passing parameters on the Command Line when executing the application, or setting system variables, but this is a separate topic
The Solution
We use the following structure for our application-context.xml:
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> <context:property-placeholder location="file:appConfigOverride.properties" order="-1" ignore-unresolvable="true" ignore-resource-not-found="true" /> <context:property-placeholder location="classpath:appConfig.properties" /> .... </beans>
The key things here, are the ‘order’ attribute, which forces properties found in the appConfigOverride.properties to be used when a property is also found in another file (effectively overriding values from the other file), and the ‘ignore-unresolvable=”true” ignore-resource-not-found=”true”‘ which allows Spring to continue loading the context if it can’t find the external file (or it doesn’t contain override all of the default properties from the appConfig file)
Nice tip, Daniel.
One more option that we might want to consider, when instead of static loading, we want to consider runtime configuration, we can use JMX as well to change the values.
Thanks Neo,
http://javawithneo.blogspot.com
Thanks for the tip, very useful! I was doing something similar, but whithout the order property.
Good article. We used this approach very successfully on a project which launched this year in the UK. Passing command line arguments when starting the application is too error-prone and should be avoided IMHO.
Excellent! This is exactly what I was looking for today.
Thanks!
-Stephen
Very Nice Article, Daniel where do we keep file:appConfigOverride.properties ?? i am having .war in wildfly