介绍Environment仓储
概念
-{appliation}:配置使用客户端名称
-{profile}:客户端spring.profiles.active配置
-{label}:服务端配置文件版本标识
构建Spring Cloud配置服务器
1.在Configuration class 标记@EnableConfigServer
2.在配置文件目录(基于git)
- ccf.properties
- ccf-dev.properties
- ccf-test.properties
- ccf-prod.properties
3.服务端配置版本仓库(本地)
spring.boot.config.server.git.uri= file://ss
##构建Spring Cloud 配置客户端
1 | spring.cloud.config.name=chenchangfeng |
Spring Cloud 分布式配置
动态配置属性Bean
@RefreshScope
健康指标
任意的输出健康指标
AbstractHealthIndicator
1 | private static final String NO_MESSAGE = null; |
g
w