飞道的博客

SpringCloud Config 分布式配置中心

335人阅读  评论(0)

分步式系统面临配置问题:  

微服务意味着要将单体应用中的业务拆分成一个个子服务,每个服务的粒度相对较小,因此系统中会出现大量的服务。由于每个服务都需要必要的配置信息才能运行,所以一套集中式的、动态的配置管理设施是必不可少的。

SpringCloud提供了ConfigServer来解决这个问题,我们每一个微服务自己带着一个application.yml,上百个配置文件的管理......

是什么

SpringCloud Config为微服务架构中的微服务提供集中化的外部配置支持,配置服务器为各个不同微服务应用的所有环境提供了一个中心化的外部配置

 

怎么玩

SpringCloud Config分为服务端和客户端两部分

 

服务端也称为分布式配置中心,它是一个独立的微服务应用,用来连接配置服务器并为客户端提供获取配置信息,加密/解密信息等访问接口

 

客户端则是通过指定的配置中心来管理应用资源,以及与业务相关的配置内容,并在启动的时候从配置中心获取和加载配置信息配置服务器默认采用git来存储配置信息,这样就有助于对环境配置进行版本管理,并且可以通过git客户端工具来方便的管理和访问配置内容。
Spring Cloud Confighttps://cloud.spring.io/spring-cloud-static/spring-cloud-config/2.2.1.RELEASE/reference/html/

概述:

集中管理配置文件,不同环境不同配置,动态化的配置更新,分环境部署比如dev/test/prod/beta/release运行期间动态调整配置,不再需要在每个服务部署的机器上编写配置文件,服务会向配置中心统一拉取,配置自己的信息当配置发生变动时,服务不需要重启即可感知到配置的变化并应用新的配置,将配置信息以REST接口的形式暴露,post、curl访问刷新均可......

GitHub整合配置:

由于SpringCloud Config默认使用Git来存储配置文件(也有其它方式,比如支持SVN和本地文件),但最推荐的还是Git,而且使用的是http/https访问的形式。

第一步:

用你自己的账号在GitHub上新建一个名为springcloud-config

第二步创建yml:

 可以获取你需要的路径:

本地硬盘目录上新建git仓库并clone:

1、I:\44\SpringCloud

2、git clone git@github.com:zzyybs/springcloud-config.git

 Config服务端配置与测试

新建Module模块:cloud-config-center-3344

1.1、pom.xml配置文件


  
  1. <?xml version= "1.0" encoding= "UTF-8"?>
  2. <project xmlns= "http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation= "http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>cloud2022</artifactId>
  7. <groupId>com.atguigu.springcloud.HystrixDashboardMain9001</groupId>
  8. <version> 1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion> 4.0 .0</modelVersion>
  11. <artifactId>cloud-config-center- 3344</artifactId>
  12. <properties>
  13. <maven.compiler.source> 8</maven.compiler.source>
  14. <maven.compiler.target> 8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.cloud</groupId>
  19. <artifactId>spring-cloud-config-server</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.cloud</groupId>
  23. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-actuator</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-devtools</artifactId>
  36. <scope>runtime</scope>
  37. <optional> true</optional>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.projectlombok</groupId>
  41. <artifactId>lombok</artifactId>
  42. <optional> true</optional>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-test</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. </dependencies>
  50. </project>

1.2、添加YAML配置文件


  
  1. server:
  2. port: 3344
  3. spring:
  4. application:
  5. name: cloud-config-center #注册进Eureka服务器的微服务名
  6. cloud:
  7. config:
  8. server:
  9. git:
  10. uri: https: //github.com/13450148480/sprincloud-config.git #GitHub上面的git仓库名字
  11. username: 13450148480
  12. password: aaa20011213
  13. skip-ssl-validation: true
  14. ####搜索目录
  15. search-paths:
  16. - springcloud-config
  17. ####读取分支
  18. label: main
  19. #服务注册到eureka地址
  20. eureka:
  21. client:
  22. register-With-eureka: true
  23. fetch-registry: true
  24. service-url:
  25. defaultZone: http: //localhost:7001/eureka

1.3、添加服务中心启动类


  
  1. @SpringBootApplication
  2. @EnableConfigServer
  3. public class ConfigCenterMain3344 {
  4. public static void main (String[] args) {
  5. SpringApplication.run(ConfigCenterMain3344.class, args);
  6. }
  7. }

1.4、启动项目测试

  1. 启动模块cloud-eureka-server7001
  2. 启动本模块3344

测试连接:http://config-3344.com:3344/main/config-dev.yml

上图所示测试成功

Config客户端配置与测试

新建Module模块:cloud-config-client-3355

1.1、pom.xml配置文件


  
  1. <?xml version= "1.0" encoding= "UTF-8"?>
  2. <project xmlns= "http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation= "http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>mscloud</artifactId>
  7. <groupId>com.atguigu.springcloud</groupId>
  8. <version> 1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion> 4.0 .0</modelVersion>
  11. <artifactId>cloud-config-client- 3355</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.cloud</groupId>
  15. <artifactId>spring-cloud-starter-config</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.cloud</groupId>
  19. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-actuator</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-devtools</artifactId>
  32. <scope>runtime</scope>
  33. <optional> true</optional>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.projectlombok</groupId>
  37. <artifactId>lombok</artifactId>
  38. <optional> true</optional>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-test</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. </dependencies>
  46. </project>

bootstrap.yml介绍:

applicaiton.yml是用户级的资源配置项

bootstrap.yml是系统级的,优先级更加高

Spring Cloud会创建一个“Bootstrap Context”,作为Spring应用的`Application Context`的父上下文。初始化的时候,`Bootstrap Context`负责从外部源加载配置属性并解析配置。这两个上下文共享一个从外部获取的`Environment`。

`Bootstrap`属性有高优先级,默认情况下,它们不会被本地配置覆盖。 `Bootstrap context`和`Application Context`有着不同的约定,所以新增了一个`bootstrap.yml`文件,保证`Bootstrap Context`和`Application Context`配置的分离。

要将Client模块下的application.yml文件改为bootstrap.yml,这是很关键的,

因为bootstrap.yml是比application.yml先加载的。bootstrap.yml优先级高于application.yml

 

1.2、添加YAML配置文件


  
  1. server:
  2. port: 3355
  3. spring:
  4. application:
  5. name: config-client
  6. cloud:
  7. #Config客户端配置
  8. config:
  9. label: master #分支名称
  10. name: config #配置文件名称
  11. profile: dev #读取后缀名称 上述 3个综合:master分支上config-dev.yml的配置文件被读取http: //config-3344.com:3344/master/config-dev.yml
  12. uri: http: //localhost:3344 #配置中心地址k
  13. #服务注册到eureka地址
  14. eureka:
  15. client:
  16. service-url:
  17. defaultZone: http: //localhost:7001/eureka

1.3添加服务中心启动类


  
  1. @EnableEurekaClient
  2. @SpringBootApplication
  3. public class ConfigClientMain3355
  4. {
  5. public static void main (String[] args)
  6. {
  7. SpringApplication.run(ConfigClientMain3355.class,args);
  8. }
  9. }

1.4、创建基本的业务接口


  
  1. @RestController
  2. @RefreshScope
  3. public class ConfigClientController {
  4. @Value("${config.info}")
  5. private String configInfo;
  6. @GetMapping("/configInfo")
  7. public String getConfigInfo ()
  8. {
  9. return configInfo;
  10. }
  11. }

 

1.5、启动项目测试

测试连接:http://localhost:3355/configInfo

 上图测试结果

Config客户端之动态刷新

避免每次更新配置都要重启客户端微服务3355

修改cloud-config-client-3355模块

1.1、pom.xml配置文件加入


  
  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-actuator</artifactId>
  4. </dependency>

1.2、YAML配置文件加入


  
  1. # 暴露监控端点
  2. management:
  3. endpoints:
  4. web:
  5. exposure:
  6. include: "*"

1.3、修改业务类


  
  1. @RestController
  2. @RefreshScope
  3. public class ConfigClientController
  4. {
  5. @Value("${config.info}")
  6. private String configInfo;
  7. @GetMapping("/configInfo")
  8. public String getConfigInfo () {
  9. return configInfo;
  10. }
  11. }

1.4、需要运维人发送Post请求刷新3355

curl -X POST "http://localhost:3355/actuator/refresh"

1.5、启动项目测试

http://localhost:3355/configInfo

SpringCloud Bus广播式动态刷新,请收看下一篇文章!


转载:https://blog.csdn.net/weixin_49770265/article/details/128273207
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场