具有外部属性的Spring引导配置文件

时间:2015-09-12 10:52:34

标签: java spring spring-boot spring-profiles spring-boot-actuator

我想在spring boot中设置3个配置文件:使用外部配置文件进行生产,开发和测试。

申请类:

@SpringBootApplication
public class Application {

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

AppConfig类:

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

@ConfigurationProperties
public class AppConfig {

}

配置/ application.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"

1 个答案:

答案 0 :(得分:1)

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

在任何情况下,为什么不直接在java配置中使用弹簧配置文件来驱动配置?国际海事组织,这将更清洁,将使您的财产更加类型安全&重新考虑因素,不容易出现拼写错误。

更新:

根据文档,您无法使用@PropertySource注释加载yml文件:

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

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

  

除了application.properties文件外,还有特定于配置文件   也可以使用命名约定来定义属性   应用程序 - {轮廓}的.properties。