1

我想在 Spring Boot 中设置 3 个配置文件:使用外部配置文件进行生产、开发、测试。

应用类:

@SpringBootApplication
public class Application {

    public static void main(String[] args){
        SpringApplication.run( Application.class, args );
    }
}

应用配置类:

@Configuration
@PropertySources({
        @PropertySource("config/application.yml"),
        @PropertySource(value = "file:${external.config}")
})

@ConfigurationProperties
public class AppConfig {

}

配置/应用程序.yml:

---
spring.profiles: production
endpoints.enabled: false
---
spring.profiles: development,test
endpoints.enabled: true
info.version: @project.version@
info.test: Test dev or test
info.profile: ${spring.profiles.active}
---

external.config: ${user.home}/.myapp/application.properties

.myapp/application.properties:

spring.profiles.active=production
info.version=5

spring-boot-actuator /info 的输出

{
  version: "5",
  test: "Test dev or test",
  profile: "production"
}

预期输出:

404 because of the endpoints.enabled: false

spring-boot-actuator /env

spring.profiles.active: "production"
4

1 回答 1

1

您可能应该在 application.yml 文件前加上classpath:

无论如何,为什么不在java配置中直接使用spring profile来驱动配置呢?IMO,这会更干净,并使您的属性更加类型安全和重构友好,并且不容易出现拼写错误。

更新:

根据文档,您无法加载带有@PropertySource注释的 yml 文件:

http://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-external-config.html#boot-features-external-config-yaml-shortcomings

因此,如果您需要使用文件,则需要使用纯属性文件。您可以使用此处显示的特定于属性的应用程序属性文件。

除了 application.properties 文件,还可以使用命名约定 application-{profile}.properties 定义特定于配置文件的属性。

于 2015-09-12T10:59:24.990 回答