• SpringCloud第九章:Config 分布式配置中心


    1. 概述

    分布式系统面临的—配置问题】

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

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

    【是什么】

    在这里插入图片描述

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

    公有的配置,抽出来放到 config server 中

    【怎么玩】
    SpringCloud Config分为服务端和客户端两部分。

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

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

    【能干嘛】

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

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

    【官网】
    https://cloud.spring.io/spring-cloud-static/spring-cloud-config/2.2.1.RELEASE/reference/html/

    2. Config服务端配置与测试

    1. 用你自己的账号在GitHub上新建一个名为springcloud-config的新Repository(我用的Gitee)
    2. 由上一步获得刚新建的git地址:

    在这里插入图片描述

    1. 本地硬盘目录上新建git仓库并clone,
      git clone https://gitee.com/xxxx/springcloud-config.git

    在 clone 下来的仓库中新建 config-dev.yml 文件,

    config:
      info: "master branch,springcloud-config/config-dev.yml version=1"
    
    • 1
    • 2

    把他 push 到 Gitee 的仓库中

    1. 新建Module模块cloud-config-center-3344
      它即为Cloud的配置中心模块cloudConfig Center

    pom

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

    yml

    server:
      port: 3344
    
    spring:
      application:
        name:  cloud-config-center #注册进Eureka服务器的微服务名
      cloud:
        config:
          server:
            git:
              uri: https://gitee.com/xxxx/springcloud-config.git #上图中复制的那个网址
              ####搜索目录
              search-paths:
                - springcloud-config
              username: gitee登录账号
              password: 登录密码
          ####读取分支
          label: master # dev
    
    #服务注册到eureka地址
    eureka:
      client:
        service-url:
          defaultZone: http://localhost:7001/eureka
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24

    主启动

    @EnableConfigServer

    package com.atguigu.springcloud;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.cloud.config.server.EnableConfigServer;
    
    @SpringBootApplication
    @EnableConfigServer
    public class ConfigCenterMain3344 {
        public static void main(String[] args) {
            SpringApplication.run(ConfigCenterMain3344.class, args);
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    windows下修改hosts文件,增加映射:127.0.0.1 config-3344.com
    在 C:\WINDOWS\system32\drivers\etc

    【测试】
    通过 Config 微服务是否可以从Gitee上获取配置内容?
    启动 3344,浏览器访问 http://config-3344.com:3344/master/config-dev.yml
    成功读到 配置信息

    3. Config客户端配置与测试

    新建cloud-config-client-3355

    pom

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

    bootstrap.yml

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

    applicaiton.yml是用户级的资源配置项
    bootstrap.yml是系统级的,优先级更加高

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

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

    要将Client模块下的application.yml文件改为bootstrap.yml,这是很关键的,
    因为bootstrap.yml是比application.yml先加载的。bootstrap.yml优先级高于application.yml

    主启动

    package com.atguigu.springcloud;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
    
    @EnableEurekaClient
    @SpringBootApplication
    public class ConfigClientMain3355 {
        public static void main(String[] args) {
            SpringApplication.run(ConfigClientMain3355.class, args);
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    业务类

    package com.atguigu.springcloud.controller;
    
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.RestController;
    import org.springframework.beans.factory.annotation.Value;
    
    @RestController
    public class ConfigClientController {
        @Value("${config.info}")//就是Gitee上config-dev.yml 中 config.info
        private String configInfo;
    
        @GetMapping("/configInfo")
        public String getConfigInfo() {
            return configInfo;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    【测试】
    启动 7001,3344,3355
    使用 3355作为Client准备访问:http://localhost:3355/configInfo
    成功实现了客户端3355访问SpringCloud Config3344通过Gitee获取配置信息

    【踩坑】
    3355 启动失败,一直报错 Could not resolve placeholder 'config.info' in value "${config.info}"试了很多方法也不行,然后注意到我的 bootstrap.yml 是红色的,就把它设置成绿色的了(我是把yml后缀改成properties,又改回来,他就自己成绿色了),就可以了

    问题随时而来,分布式配置的动态刷新问题
    Linux运维修改GitHub上的配置文件内容做调整
    刷新3344,发现ConfigServer配置中心立刻响应
    刷新3355,发现ConfigClient客户端没有任何响应
    3355没有变化除非自己重启或者重新加载
    难到每次运维修改配置文件,客户端都需要重启??噩梦


    示例:

    在这里插入图片描述

    点击最下方的“提交”

    通过 3344 访问 http://config-3344.com:3344/master/config-dev.yml,发现 version =2
    通过 3355 访问 http://localhost:3355/configInfo,发现 version 还是 1
    重启 3355 ,确实 更新 version 了,但是不能每次都重启吧?

    4. Config客户端之动态刷新

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

    动态刷新

    修改3355模块,确保 POM 引入 actuator 监控

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

    修改YML,暴露监控端口
    management 顶格写

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

    业务类ConfigClientController 类名上加 @RefreshScope

    【测试】
    重复前面的“示例”操作,将 version 改为 3 试试,发现结果还是一样,3355并没有更新,怎么办?

    需要运维人员发送Post请求刷新3355,必须是POST请求
    打开 cmd,curl -X POST "http://localhost:3355/actuator/refresh"

    然后,不必重启 3355,重新访问 http://localhost:3355/configInfo,发现 version 更新为 3 了

    【想想还有什么问题?】

    假如有多个微服务客户端3355/3366/3377。。。。。。
    每个微服务都要执行一次post请求,手动刷新?
    可否广播,一次通知,处处生效?
    我们想大范围的自动刷新,求方法

  • 相关阅读:
    Redis 命令
    C语言学习--结构体与联合体
    POI及EasyExcel【Java提高】
    “高级小程序开发指南“
    从原始边列表到邻接矩阵Python实现图数据处理的完整指南
    如何利用智慧社区的优势来创建解决方案
    在带头结点的单链表L中,删除所有值为x的节点,并释放其空间,假设值为x的 不唯一,编写算法实现以上操作(c语言实现)
    rust 中实用转换
    (附源码)ssm教师工作量核算统计系统 毕业设计 162307
    DIV盒模型和CSS基础
  • 原文地址:https://blog.csdn.net/QinLaoDeMaChu/article/details/126485263