Skip to content

Instantly share code, notes, and snippets.

@norbertpotocki
Created March 17, 2016 23:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save norbertpotocki/289f3943249ea2813dcf to your computer and use it in GitHub Desktop.
Save norbertpotocki/289f3943249ea2813dcf to your computer and use it in GitHub Desktop.
Merge configuration using MergeConfigurationSource
@Bean
ConfigurationProvider configurationProvider(ConfigurationSource configurationSource,
@Value("${configuration.environment}") String configurationEnvironment) {
ConfigurationSource localOverrideSource = new FilesConfigurationSource(() -> Collections.singletonList(Paths.get("application.properties")));
MergeConfigurationSource mergeConfigurationSource = new MergeConfigurationSource(localOverrideSource, configurationSource);
return new ConfigurationProviderBuilder()
.withConfigurationSource(mergeConfigurationSource)
.withEnvironment(new ImmutableEnvironment("app/" + configurationEnvironment + "/feature"))
.withReloadStrategy(new PeriodicalReloadStrategy(30, TimeUnit.SECONDS))
.build();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment