Config server与client配置与测试及动态刷新

Config 服务端配置与测试

在这里插入图片描述
config服务端通过git地址访问github上的文件

新建一个项目,上传到github,模拟运维人员进行操作,实现远程与本地的整体一致性。
我的例子是建一个cloud-config仓库,包含三个yml文件,下面会读取文章文件中的信息
在这里插入图片描述
在这里插入图片描述

1. 新建module cloud-config-center-3344,是cloud的配置中心模块

在这里插入图片描述

2. pom.xml
<?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>cloud2020</artifactId>
        <groupId>com.atguigu.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>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>
3. application.yml
server:
  port: 3344

spring:
  application:
    name: cloud-config-center
  cloud:
    config:
      server:
        git:
          uri: git@github.com:TNoOne/cloud-config.git #github仓库上面的git仓库名字
          ##搜索目录
          search-paths:
            - cloud-config
      #读取分支
      label: master

eureka:
  client:
    service-url:
      defaultZone: http://localhost:7001/eureka #注册进eureka
4. 主启动类
//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);
    }
}
5. windows下修改hosts文件,增加映射

127.0.0.1 config-3344.com

6. 启动3344 ,测试

在这里插入图片描述
在这里插入图片描述
这样就读到了github上的文件内容。说一下这个访问地址的组合,前面我们配置了hosts文件映射,所以能用config-3344.com代替localhost,master 指的是git仓库的master分支,config-test.yml 指的就是这个分支上的文件,就是这样访问的。

配置读取规则:

官网定义,只介绍常用的三种:

在这里插入图片描述
在这里插入图片描述
第二种去掉了 {label},不过不在yml配置,默认访问master分支,如果访问不存在的文件,返回空
在这里插入图片描述
在这里插入图片描述
第三种和第一种差不多,label放在了后面,但是返回的是一个json串,我们可以自己解析里面的内容
在这里插入图片描述
小总结:
在这里插入图片描述

Config客户端配置与测试

在这里插入图片描述
客户端不直接访问github,而是通过服务端访问。

1. 新建module cloud-config-client-3355

在这里插入图片描述

2. pom.xml
<?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>cloud2020</artifactId>
        <groupId>com.atguigu.springcloud</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

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

    <dependencies>
        <!--不带server了,说明是客户端-->
        <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>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>
3. yml 文件

这里我们要学一个新的yml文件——bootstrap.yml文件
在这里插入图片描述

#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.com/eureka
4. 主启动
package com.atguigu.springcloud;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
@SpringBootApplication
@EnableEurekaClient
public class ConfigClientMain3355 {
    public static void main(String[] args) {
        SpringApplication.run(ConfigClientMain3355.class,args);
    }
}
5. 业务类
//将配置中心以REST接口的形式暴露,然后客户端访问
package com.atguigu.springcloud.controller;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RefreshScope
public class ConfigClientController {
    @Value("${config.info}")
    private String configInfo;  //要访问的3344上的信息

    @GetMapping("/configInfo")	//请求地址
    public String getConfigInfo(){
        return configInfo;
    }
}
6. 启动3355,测试

先来看一下注册中心,确保server端和client端注册进来
在这里插入图片描述
客户端通过访问服务端REST暴露的接口 访问到dev
在这里插入图片描述
这样就成功实现了客户端3355访问 Config服务端3344 通过github获取配置信息

但是。现在修改config-dev.yml 配置并提交到github上,比如加个变量age或者版本号version。问题随之而来,分布式配置的动态刷新问题

Linux运维修改github上的配置文件内容做调整
在这里插入图片描述
刷新3344,发现ConfigServer配置中心立刻响应,因为直接连的github
在这里插入图片描述
刷新3355,发现ConfigClient客户端没有任何响应
在这里插入图片描述
3355没有变化,除非自己重启或者重新加载,难道每次运维修改配置文件,客户端都需要重启?实际生产当中某些微服务加载是很慢的,那就要使用动态刷新。

Config客户端之动态刷新

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

1. 修改3355模块,引入actuator图形化监控

意思是说 我自己发生变化了能被别人监控到

<!--PS:gateway是不能加actuator的-->
<dependency>
    <groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
2. 修改yml,暴露监控端口
#添加配置,暴露监控端点
management:
  endpoints:
    web:
      exposure:
        include: "*"
3. 业务类controller加@RefreshScope,刷新功能

在这里插入图片描述

4. 重启3355,测试

先来看3355 是否正常访问
在这里插入图片描述
正常,访问到 version=2,现在修改github文件,改为3
在这里插入图片描述
测试server端3344,正常
在这里插入图片描述
测试client端3355,多次刷新,还是2,没有改变
在这里插入图片描述
别急,此时需要运维人员发送Post请求刷新3355,@RefreshScope的作用就是自动获悉刷新的内容
必须是Post请求,使用curl命令,稍等一下,出现下面界面,激活3355
在这里插入图片描述
再来测试,3355也更新了
在这里插入图片描述
这样就避免了每次修改都要重启客户端服务,虽然需要自己发Post请求,但是也比重启好,两害相权取其轻。

想想还有什么问题?

假设有多个微服务客户端3355/3366/3377。。。每个微服务都需要执行一次post请求,可以写一个脚本,批量执行。但是还有没有更优化的方法?

我们想大范围的自动刷新,可否广播?一次通知,处处生效?
所以引入了SpringCloud Bus消息总线,详情可以到博客分类下查看。

评论 8
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值