SpringCloud Config配置中心
Config架构
当一个系统中的配置文件发生改变的时候,我们需要重新启动该服务,才能使得 新的配置文件生效,spring cloud config 可以实现微服务中的所有系统的配置文 件的统一管理,而且还可以实现当配置文件发生变化的时候,系统会自动更新获 取新的配置。
Gitee搭建Config Server的后端存储,专门存放配置,以供在客户端获取
在Gitee上新建项目 spring-cloud-config
服务端配置
1、引入pom文件
<!--spring-cloud 整合 config-server -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
2、添加配置文件application.yml
spring:
application:
####注册中心应用名称
name:config-server
cloud:
config:
server:
git:
###git 环境地址
uri: https://gitee.com/springCloud_parent.git
####搜索目录
search-paths:
- config
####读取分支
label: master
3、启动类添加注解
@EnableConfigServer //开启分布式配置中心服务器端
客户端配置
1、引入pom文件
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-client</artifactId>
</dependency>
2、添加配置文件application.yml
spring:
application:
####注册中心应用名称
name:config-client
cloud:
config:
####读取后缀
profile: dev
####读取 config-server 注册地址
discovery:
service-id: config-server
enabled: true
3、通过Config Client 获取 Config Server端的信息
@RestController
public class ClientController {
//config server存储中心对应的 配置文件中得属性名
@Value("${name}")
private String name;
@Value("${profile}")
private String profile;
@GetMapping("/getVauleFromConfigServer")
public String getValue() {
return "config server中的内容:name=" + name + ",profile=" + profile;
}
}
访问client的控制层 : http://localhost:port/getVauleFromConfigServer