• SpringCloud-5.服务配置(SpringCloud Config)


    目录

    一、概述

    1.1 问题引入

    1.2 SpringCloud Config是什么

    二、服务端配置

    2.1 Git/GitHub配置

    2.2 服务器端模块

    三、客户端配置

    四、动态刷新


    一、概述

    1.1 问题引入

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

    1.2 SpringCloud Config是什么

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

            SpringCloud Config分为服务端客户端两部分。
            服务端也称为分布式配置中心,它是一个独立微服务应用,用来连接配置服务器并为客户端提供获取配置信息加密/解密信息访问接口
            客户端则是通过指定的配置中心来管理应用资源、业务相关的配置内容,并在启动的时候从配置中心获取加载配置信息。配置服务器默认采用git来存储配置信息,这样就有助于对环境配置进行版本管理,并且可以通过git客户端工具来方便的管理访问配置内容

            作用

            1.集中管理配置文件

            2.不同环境不同配置,动态化的配置更新分环境部署比如 dev / test / beta / release

            3.运行期间动态调整配置,不再需要在每个服务部署的机器上编写配置文件,服务会向配置中心统一拉取配置自己的信息

            4.当配置发生变动时,服务不需要重启即可感知到配置的变化并应用新的配置

            5.将配置信息以REST接口的形式暴露

    二、服务端配置

            读取配置的规则其实有或几种,为了规范推荐使用如下格式:

    /{label}/{name}-{profiles}.yml
     
            label:分支(branch)
            name :服务名
            profiles:环境(dev/test/prod)

            例如:http://config-3344.com:3344/master/config-prod.yml

    2.1 Git/GitHub配置

            1.在github上建一个仓库,名字:springcloud-config

            2.idea中配置Git,写几个配置文件,然后把github上的这个仓库克隆本地,新建几个配置文件yml,commit -> push,更新到github上。记得更改主分支名字为master

    2.2 服务器端模块

            1.新建模块:cloud-config-center-3344

            2.POM

    1. <dependencies>
    2. <dependency>
    3. <groupId>org.springframework.cloudgroupId>
    4. <artifactId>spring-cloud-config-serverartifactId>
    5. dependency>
    6. <dependency>
    7. <groupId>org.springframework.cloudgroupId>
    8. <artifactId>spring-cloud-starter-netflix-eureka-clientartifactId>
    9. dependency>
    10. <dependency>
    11. <groupId>org.springframework.bootgroupId>
    12. <artifactId>spring-boot-starter-webartifactId>
    13. dependency>
    14. <dependency>
    15. <groupId>org.springframework.bootgroupId>
    16. <artifactId>spring-boot-starter-actuatorartifactId>
    17. dependency>
    18. <dependency>
    19. <groupId>org.springframework.bootgroupId>
    20. <artifactId>spring-boot-devtoolsartifactId>
    21. <scope>runtimescope>
    22. <optional>trueoptional>
    23. dependency>
    24. <dependency>
    25. <groupId>org.projectlombokgroupId>
    26. <artifactId>lombokartifactId>
    27. <optional>trueoptional>
    28. dependency>
    29. <dependency>
    30. <groupId>org.springframework.bootgroupId>
    31. <artifactId>spring-boot-starter-testartifactId>
    32. <scope>testscope>
    33. dependency>
    34. dependencies>

            3.YML

    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: git@github.com:master-wz/springcloud-config.git #GitHub上面的git仓库名字
    11. uri: https://github.com/master-wz/springcloud-config.git #https方式
    12. ####搜索目录
    13. search-paths:
    14. - springcloud-config
    15. username: xxx #github账户
    16. password: xxx #github密码
    17. skip-ssl-validation: true
    18. ####读取分支
    19. label: master
    20. #服务注册到eureka地址
    21. eureka:
    22. client:
    23. service-url:
    24. defaultZone: http://localhost:7001/eureka

            4.主启动,@EnableConfigServer

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

            5.(可选,使用火绒很方便)修改host文件,加入:

    127.0.0.1  config-3344.com

             6.测试

                    输入:

    http://config-3344.com:3344/master/config-dev.yml

                    输出:

    1. config:
    2. name: config-dev

    三、客户端配置

            1.建模块:cloud-config-client-3355

            2.POM

    1. <dependencies>
    2. <dependency>
    3. <groupId>org.springframework.cloudgroupId>
    4. <artifactId>spring-cloud-starter-configartifactId>
    5. dependency>
    6. <dependency>
    7. <groupId>org.springframework.cloudgroupId>
    8. <artifactId>spring-cloud-starter-netflix-eureka-clientartifactId>
    9. dependency>
    10. <dependency>
    11. <groupId>org.springframework.bootgroupId>
    12. <artifactId>spring-boot-starter-webartifactId>
    13. dependency>
    14. <dependency>
    15. <groupId>org.springframework.bootgroupId>
    16. <artifactId>spring-boot-starter-actuatorartifactId>
    17. dependency>
    18. <dependency>
    19. <groupId>org.springframework.bootgroupId>
    20. <artifactId>spring-boot-devtoolsartifactId>
    21. <scope>runtimescope>
    22. <optional>trueoptional>
    23. dependency>
    24. <dependency>
    25. <groupId>org.projectlombokgroupId>
    26. <artifactId>lombokartifactId>
    27. <optional>trueoptional>
    28. dependency>
    29. <dependency>
    30. <groupId>org.springframework.bootgroupId>
    31. <artifactId>spring-boot-starter-testartifactId>
    32. <scope>testscope>
    33. dependency>
    34. dependencies>

            3.bootstrap.yml

            applicaiton.yml用户级的资源配置项
            bootstrap.yml系统级的,优先级更高
     
            SpringCloud会创建一个“Bootstrap Context”作为Spring应用的`Application Context`的父上下文。初始化的时候,`Bootstrap Context`负责从外部源加载配置属性解析配置。这两个上下文共享一个从外部获取的`Environment`。

    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

             4.主启动

    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. }

             5.业务类

    1. @RestController
    2. public class ConfigClientController
    3. {
    4. @Value("${config.name}")
    5. private String configInfo;//配置文件中的config.name属性
    6. @GetMapping("/configInfo")
    7. public String getConfigInfo()
    8. {
    9. return configInfo;
    10. }
    11. }

             6.测试

                    输入:

    http://localhost:3355/configInfo

                    输出:

    config-dev

                    成功获取到了远程配置文件中的config.name属性 

    四、动态刷新

            假设运维在github修改了配置文件。

            刷新3344,发现ConfigServer配置中心立刻响应;刷新3355,发现ConfigClient客户端没有任何响应。我们总不能改一次重启一次服务器吧!

            为了避免这样的情况,我们需要修改3355的配置,实现动态刷新。

            1.POM引入actuator监控依赖

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

            2.修改YML,暴露监控端口

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

            3.给Controller添加@RefreshScope注解

            4.测试

            修改github上的配置信息,然后在cmd中输入下面指令:

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

            这时发现不管config-server还是config-client,配置信息都更新了。

            但现在有了新的问题:我们实现了动态刷新3355的配置,但如果有多台config client呢?我们总不能一个个的去执行上面那个命令吧!我们希望能用广播的方式,只输入一次指令,就让所有的config client动态刷新。那就要用到下一张讲的 SpringCloud Bus 了。

  • 相关阅读:
    linux查看python的py文件的命令
    sqlserver2012 完全卸载
    AWS VPC 概述
    ArcGIS小技巧|四种计算图斑面积的方法
    macOS - 处理系统更新红点
    Spring Cloud Gateway详解
    在ubuntu20.04 上配置 qemu/kvm linux kernel调试环境
    VirtualBox中安装MacOS Big Sur
    爬虫_爬虫守则,反爬,反反爬和爬虫开发流程
    JavaScript快速入门
  • 原文地址:https://blog.csdn.net/weixin_62427168/article/details/126473977