From 0711b1e53ffa2e34728b311dafcc1debc744acf6 Mon Sep 17 00:00:00 2001 From: qibaoguang Date: Tue, 10 Feb 2015 23:27:22 +0800 Subject: [PATCH] Update 24.1. Adding active profiles.md --- .../24.1. Adding active profiles.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/IV. Spring Boot features/24.1. Adding active profiles.md b/IV. Spring Boot features/24.1. Adding active profiles.md index e69de29..ac5b7b9 100644 --- a/IV. Spring Boot features/24.1. Adding active profiles.md +++ b/IV. Spring Boot features/24.1. Adding active profiles.md @@ -0,0 +1,15 @@ +### 24.1. 添加激活的配置(profiles) + +spring.profiles.active属性和其他属性一样都遵循相同的排列规则,最高的PropertySource获胜。也就是说,你可以在application.properties中指定生效的配置,然后使用命令行开关替换它们。 + +有时,将特定的配置属性添加到生效的配置中而不是替换它们是有用的。spring.profiles.include属性可以用来无条件的添加生效的配置。SpringApplication的入口点也提供了一个用于设置额外配置的Java API(比如,在那些通过spring.profiles.active属性生效的配置之上):参考setAdditionalProfiles()方法。 + +示例:当一个应用使用下面的属性,并用`--spring.profiles.active=prod`开关运行,那proddb和prodmq配置也会生效: +```java +--- +my.property: fromyamlfile +--- +spring.profiles: prod +spring.profiles.include: proddb,prodmq +``` +**注**:spring.profiles属性可以定义到一个YAML文档中,用于决定什么时候该文档被包含进配置中。具体参考[Section 63.6, “Change configuration depending on the environment”](http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#howto-change-configuration-depending-on-the-environment)