Loading...

Config配置中心

学习地址:https://www.bilibili.com/video/BV18E411x7eT?p=74

源码分享:https://github.com/mobiwusihuan288/SpringCloud2020

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

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

SpringCloud Config

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

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

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

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

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

image-20201014111843947

用途

  1. 集中管理配置文件

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

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

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

  5. 将配置信息以REST接口的形式暴露。post、curl访问刷新均可....

Config服务端配置与测试

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

  1. 用你自己的账号在Github上新建一个名为Sprincloud-Config的新Repository

img

  1. 克隆仓库

img

  1. 获取配置文件(开发时自己写

保存格式必须为UTF-8

$ git clone https://github.com/zzyybs/springcloud-config.git

img

  1. 上传配置文件

add

img

commit

img

push

img

查看

img

cloud-config-center-3344

  1. 建module

  2. 写POM

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <artifactId>springcloud2020</artifactId>
        <groupId>com.nuc.springcloud</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>cloud-config-center-3344</artifactId>

    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-config-server</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
        </dependency>
        <dependency>
            <groupId>com.nuc.springcloud</groupId>
            <artifactId>cloud-api-commons</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>
  1. 写YML
server:
  port: 3344
spring:
  application:
    name: cloud-config-center
  cloud:
    config:
      server:
        git:
          # Github的git仓库
          uri: https://github.com/mobiwusihuan288/SpringCloud-Config.git
          # 搜索目录
          search-paths:
            - SpringCloud-Config
      # 读取分支
      label: master
eureka:
  client:
    service-url:
      defaultZone:  http://localhost:7001/eureka


  1. 主启动类
@SpringBootApplication
@EnableConfigServer
public class ConfigCenterMain3344 {
    public static void main(String[] args) {
        SpringApplication.run(ConfigCenterMain3344.class,args);
    }
   
}
  1. windows下修改hosts文件,增加映射
127.0.0.1 config-3344.com
  1. 测试

7001、3344

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

img

配置读取规则

label:分支(branch)
name:服务名
profiles:环境(dev/test/prod)

1. /{label}/{application}-{profile}.yml(最推荐使用这种方式)
master
http://config-3344.com:3344/master/config-dev.yml
http://config-3344.com:3344/master/config-test.yml
http://config-3344.com:3344/master/config-prod.yml
dev
http://config-3344.com:3344/dev/config-dev.yml
http://config-3344.com:3344/dev/config-test.yml
http://config-3344.com:3344/dev/config-prod.yml

2. /{application}-{profile}.yml
http://config-3344.com:3344/config-dev.yml
http://config-3344.com:3344/config-test.yml
http://config-3344.com:3344/config-prod.yml
http://config-3344.com:3344/config-xxxx.yml(不存在的配置)-->空json串

3. /{application}-{profile}[/{label}]
http://config-3344.com:3344/config/dev/master
http://config-3344.com:3344/config/test/master
http://config-3344.com:3344/config/prod/master

Config客户端配置与测试

cloud-config-client-3355

  1. 建module

  2. 写POM

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <artifactId>springcloud2020</artifactId>
        <groupId>com.nuc.springcloud</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>cloud-config-client-3355</artifactId>


    <dependencies>

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-config</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
        </dependency>
        <dependency>
            <groupId>com.nuc.springcloud</groupId>
            <artifactId>cloud-api-commons</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

</project>
  1. 写YML(bootstap.yml)
server:
  port: 3355

spring:
  application:
    name: config-client
  cloud:
    #Config客户端配置
    config:
      label: master #分支名称
      name: config #配置文件名称
      profile: dev #读取后缀名称
      # 以上配置 master分支上config-dev.yml  相当于http://config-3344.com:3344/master/config-dev.yml
      uri: http://localhost:3344 #配置中心地址
eureka:
  client:
    service-url:
      defaultZone: http://eureka7001.com:7001/eureka
  1. 主启动
@SpringBootApplication
@EnableEurekaClient
public class ConfigClientMain3355 {
    public static void main(String[] args) {
        SpringApplication.run(ConfigClientMain3355.class,args);
    }
}
  1. 业务类
@RestController
public class ConfigClientController {

    @Value("${config.info}")
    private String configInfo;

    @GetMapping("/configInfo")
    public String getConfigInfo() {
        return configInfo;
    }
}
  1. 测试

7001、3344、3355

http://localhost:3355/configInfo

img

关于application.yml和bootstrap.yml

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

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

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

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

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

分布式配置的动态刷新

问题描述

  • Linux运维修改GitHub上的配置文件内容做调整

  • 刷新3344,发现ConfigServer配置中心立刻响应

  • 刷新3355,发现ConfigServer客户端没有任何响应

  • 3355没有变化除非自己重启或者重新加载

解决

  1. 修改3355YML
management:
  endpoints:
    web:
      exposure:
        include: "*"
  1. 修改业务类
@RestController
@RefreshScope
public class ConfigClientController {}
  1. 需要运维人员发送Post请求刷新3355
curl -X POST "http://localhost:3355/actuator/refresh"
  1. 测试

修改git配置文件

img

刷新3344

img

刷新3355

img

发送Post请求刷新3355

img

再次刷新3355

img

问题:

假如有多个微服务客户端3355/3366/3377。。。。

每个微服务都要执行一次post请求,手动刷新?

可否广播,一次通知,处处生效?

我们想大范围的自动刷新,求方法

解决:

下一期SpringCloud Bus 消息总线

posted @ 2020-10-14 11:48  iniwym  阅读(241)  评论(0编辑  收藏  举报