spring.profiles.include 来自 spring 云配置的属性
Posted
技术标签:
【中文标题】spring.profiles.include 来自 spring 云配置的属性【英文标题】:spring.profiles.include property from spring cloud config 【发布时间】:2019-10-03 10:16:44 【问题描述】:我有一个 Spring Boot 应用程序。我在 application.yml 中使用 spring.profiles.include 来根据给定的配置文件添加一些活动配置文件,然后我使用这些活动配置文件来创建 bean,如下所示:
application.yml:
spring:
profiles: prod
profiles.include:
- enable_tls
- enable_mongo_ssl
配置类 - 根据活动配置文件创建 bean:
@Configuration
@PropertySource("classpath:/mongo-$mongo.environment.properties")
public class MongoConfiguration
@Bean
@Profile("enable_mongo_ssl")
public MongoClientOptions.Builder mongoClientOptionsBuilder()
return getMongoClientOptionsBuilder();
这很好用。 但是,当我删除 application.yml 并通过 Spring Cloud Config 使用外部配置时 - 使用 Git 存储库,这不起作用。活动配置文件只是 prod,不包括“enable_tls”和“enable_mongo_ssl”,因此在创建 bean 时,声明:
@Profile("enable_mongo_ssl")
不再是真的。
当我查询环境控制器时,我可以看到配置文件 enable_tls 和 enable_mongo_ssl:
"profiles": [
"prod"
],
"label": null,
"version": "2ddd208fff7caa48b2ae41d69020325ce61f241e",
"state": null,
"propertySources": [
"name": "file:///C://dev/config-repo/config/application-prod.yml",
"source":
"spring.profiles.include[0]": "enable_tls",
"spring.profiles.include[1]": "enable_mongo_ssl",
"server.ssl.key-store-password": "ENC(xxx)",
有限制吗?我们可以在外部配置中而不是在本地 application.yml 文件中使用 spring.profiles.include 吗?
有关信息,我使用的是 Finchley.SR3 版本。
我当前的解决方案是在 Config Server 中外部化所有属性,除了 spring.profiles.include 保留在 application.yml 类路径文件中。
【问题讨论】:
【参考方案1】:他们不想从服务器实现递归配置文件检索:
https://github.com/spring-cloud/spring-cloud-config/issues?q=is%3Aissue+spring.profiles.include
只需在 bootstrap.yaml ((
【讨论】:
这就是我在问题中描述的解决方法。不是最好的解决方案,但它有效。谢谢。以上是关于spring.profiles.include 来自 spring 云配置的属性的主要内容,如果未能解决你的问题,请参考以下文章
spring.profiles.active和spring.profiles.include的使用与区别
spring.profiles.include 不适用于命令行参数