从天气项目看 Spring Cloud 微服务治理| |微服务的集中化配置
集中化配置:解决服务实例很多,配置文件也很多的问题
为什么需要集中化配置
1、微服务实例数量太多
2、手工管理配置繁琐
配置分类:
按照配置来源:主要有源代码、文件、数据库连接、远程调用等
按照配置环境来分:测试环境、预发布环境、生产环境等
按照配置的集成阶段划分:编译时、打包时和运行时
按加载方式:启动加载和动态加载
配置中心的要求
如何集成Spring Cloud Config
分布式外部化配置
1、Config Server
2、Config Client
使用Config实现的配置中心Server端
添加依赖:
实现微服务的集中化配置
引入依赖:
// Spring Cloud Config Server
compile('org.springframework.cloud:spring-cloud-config-server')
修改配置文件
修改启动类
@SpringBootApplication
@EnableDiscoveryClient
@EnableConfigServer
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
使用Config实现的配置中心Client端
引入依赖:
// Config Client
compile('org.springframework.cloud:spring-cloud-config-client')
启动类不用修改
修改配置文件