spring cloud 问题记录(九)spring cloud config配置加载多个配置文件
在配置仓库我们可能会根据需要将配置分成很多种,例如公共的配置,例如应用独有的配置,例如数据库database的配置,例如redis的配置等等如图,可能common的配置在每个应用中都会用到,所以这里单独提炼出来,那么怎么在客户端使用2个配置呢spring:application:name: public-gatewaycloud:config:...
·
在配置仓库我们可能会根据需要将配置分成很多种,例如公共的配置,例如应用独有的配置,例如数据库database的配置,例如redis的配置等等
如图,可能common的配置在每个应用中都会用到,所以这里单独提炼出来,那么怎么在客户端使用2个配置呢
spring:
application:
name: public-gateway
cloud:
config:
profile: ${spring.profiles.active}
name: ${spring.application.name},common
label: master
discovery:
enabled: true
service-id: public-config
就是针对spring.cloud.config.name设置多个名称就行,这里注意用逗号隔开。
更多推荐
已为社区贡献8条内容
所有评论(0)