在分布式微服务架构中,由于服务数量很多,使得有很多配置文件,在更新配置文件时很麻烦。
我们每个微服务都自带一个application.yml,上百个配置文件管理器来很麻烦,所以一套集中式的,动态的配置管理功能是必不可少的,在Spring Cloud中,有分布式配置中心组件Spring Cloud Config来解决这个问题。
一,什么是Spring Cloud Config?
-
Spring Cloud Config 为微服务架构中的微服务提供集中式的外部配置支持,配置服务器为各个不同微服务应用的所有环境提供了一个中心化的外部配置。
-
Spring Cloud Config 分为服务端与客户端:
-
服务端 Config Sever :
称为分布式配置中心,它是一个独立的微服务应用,用来连接配置服务器并为客户端提供获取配置信息,加密,解密信息等访问接口。
配置服务器官方推荐采用git来存储配置信息,这样就助于对环境配置进行版本管理,并且可通过git客户端工具来方便的管理与访问配置信息。 -
客户端 config client :
通过指定的服务端来管理服务的资源,以及业务相关的配置内容,并在启动的时候从服务端获取和加载配置信息。
-
二,作用
- 集中管理配置文件
- 不同环境不同配置,动态化的配置更新,根据不同环境部署,如dev/test/prod
- 运行期间动态调整配置,不再需要在每个服务部署的机器上编写配置,服务会向配置中心统一拉取自己的配置信息
- 当配置发生变动时,服务不需要重启即可感知到配置的变化并使用修改后的配置信息
- 将配置信息以rest接口的形式暴露
三,与github配合配置信息
由于Spring Cloud Config官方推荐git来管理配置文件(也可支持其他方式,如:SVN和本地文件),而且使用http/https访问的形式
四,案例
首先在git上创建一个仓库:
因为之前创建过。
其次,将git地址clone到本地。
创建一个配置文件 studentservice-config-application.yml
spring:
profiles:
active: dev # 激活开发环境配置
---
server:
port: 4001 #端口号
spring:
profiles: dev # 开发环境
application:
name: microservice-config-dev
name: 11
---
server:
port: 4002 #端口号
spring:
profiles: prod # 生产环境
application:
name: microservice-config-prod
然后将这个git 命令 ;
git add studentservice-config-application.yml
git commit -m “提交内容”
git push origin master
这样将配置文件推送到远程仓库里了
创建一个微服务 studentservice-cloud-11-config-server-5001
创建完在pom.xml文件中引入相关依赖
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
再创建一个启动类
package com.asi.springcloud;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;
@EnableConfigServer //开启配置中心服务
@SpringBootApplication
public class ConfigServer_5001 {
public static void main(String[] args) {
SpringApplication.run(ConfigServer_5001.class,args);
}
}
测试
创建Config 客户端 studentservice-cloud-12-client-8080
pom.xml中引入依赖
<dependencies>
<!-- 配置Spring Cloud Config 客户端 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
启动类
package com.asi.springcloud;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class ConfigClient_8080 {
public static void main(String[] args) {
SpringApplication.run(ConfigClient_8080.class,args);
}
}
配置文件
application.yml : 是用户级别的配置项
bootstrap.yml : 是系统级别的配置项,优先级更高
bootstrap.yml
spring:
cloud:
config:
name: studentservice-config-application # github上的配置名称,
profile: prod #使用环境
label: master #远程类的分支名
uri: http://localhost:5001 #config配置中心地址,通过它获取studentservice-config-application.yml配置信息
application.yml
server:
port: 8080
spring:
application:
name: studentservice-config-client
再写个congroller
package com.asi.springcloud.controller;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class ConfigClientController {
@Value("${server.port}")
private String port;
@Value("${spring.application.name}")
private String applicationName;
@GetMapping("/config")
public String config(){
String content = "application:"+applicationName+",port:"+port;
return content;
}
}
访问请求