SpringCloud Day06--分布式配置中心(SpringCloud Config)

简介: SpringCloud Day06--分布式配置中心(SpringCloud Config)

9. SpringCloud Config 分布式配置中心


9.1 概述


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


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


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


9.1.2 是什么?


8900080ae15e89898c5c93cb90397261.jpg


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


9.1.3 怎么玩


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


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


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


9.1.4 能干嘛


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


9.1.5 与GitHub/Gitee整合配置


由于SpringCloud Config默认使用Git来存储配置文件(也有其它方式,比如支持SVN和本地文件),

但最推荐的还是Git,而且使用的是http/https访问的形式


9.1.6 查阅官网

https://cloud.spring.io/spring-cloud-static/spring-cloud-config/2.2.1.RELEASE/reference/html/


7983ddf5789fc5f8e11c8d4546a306da.png


9.2 Config服务端配置与测试


9.2.1 环境准备


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


由上一步获得刚新建的git地址 git@github.com:GGYGGYGGYGGYGGY/springcloud-config.git


本地硬盘目录上新建git仓库并clone git clone git@github.com:zzyybs/springcloud-config.git


fb2d355ffa4c908e05d10d058ea8ee83.png



此时在本地D盘符下D:\Git_Space\springcloud_config


5b9ca457d6597abb0f59c7c6514e9d34.png



1.表示多个环境的配置文件

2.保存格式必须为UTF-8

3.如果需要修改,此处模拟运维人员操作git和github

git add . 
git commit -m "init yml"  .
git push 远程仓库地址 master
git clone -b 分支名称 远程仓库地址


注意:因为国内访问GitHub比较慢,建议使用Gitee进行代替


9.2.2 Config服务器端配置


  • 建Module—建立cloud-config-center-3344,它即为Cloud的配置中心模块cloudConfig Center
  • 建POM
<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>
  • YML
server:
  port: 3344
spring:
  application:
    name:  cloud-config-center #注册进Eureka服务器的微服务名
  cloud:
    config:
      server:
        git:
          #uri: git@github.com:GGYGGYGGYGGYGGY/springcloud-config.git #GitHub上面的git仓库名字 github在国外很慢,所以建议使用 gitee
          uri: https://gitee.com/lxylxylxylxy/springcloud-config.git
#          username: 18625983574  如果没有进行SSH免密登录的配置,需要加上用户名和密码
#          password: LXYZKD.204019
          ####搜索目录
          search-paths:
            - springcloud-config
      ####读取分支
      label: master
#服务注册到eureka地址
eureka:
  client:
    service-url:
      defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka,http://eureka7004.com:7004/eureka  # 集群版
  • 主启动类
@SpringBootApplication
@EnableConfigServer
public class ConfigCenterMain3344 {
    public static void main(String[] args) {
        SpringApplication.run(ConfigCenterMain3344.class, args);
    }
}


windows下修改hosts文件,增加映射 127.0.0.1 config-3344.com


测试通过Config微服务是否可以从Gitee上获取配置内容


测试通过Config微服务是否可以从GitHub上获取配置内容


1.启动Eureka7001,7002,7004;


2.启动微服务3344


3.访问 http://config-3344.com:3344/master/config-dev.yml



9a2dbb91a0f963934a8d272a482c5b7d.png

结论:成功实现了用SpringCloud Config通过GitHub获取配置信息


9.2.3 配置读取规则


官网:


e67d5f0c23e1dad37e67795b26edb0ca.png

  • /{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
  • /{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(不存在的配置)  #运行会报错
  • /{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/test/dev

配置细节总结:


label:分支(branch)

name :服务名

profiles:环境(dev/test/prod)


9.3 Config客户端配置与测试


9.3.1 配置代码实现


  • 建Module—新建cloud-config-client-3355
  • POM


<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>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>
  • 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

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 #配置中心地址k
#服务注册到eureka地址
eureka:
  client:
    service-url:
      defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka,http://eureka7004.com:7004/eureka  # 集群版

说明


243901bb0899e3317b4fa71086233ac7.png


  • 主启动


@EnableEurekaClient
@SpringBootApplication
public class ConfigClientMain3355
{
    public static void main(String[] args)
    {
        SpringApplication.run(ConfigClientMain3355.class,args);
    }
}


  • 业务类
@RestController
public class ConfigClientController
{
    @Value("${config.info}")
    private String configInfo;
    @GetMapping("/configInfo")
    public String getConfigInfo() 
    {
        return configInfo;
    }
}


测试

1.启动Config配置中心3344微服务并自测


2.访问 http://config-3344.com:3344/master/config-prod.yml , http://config-3344.com:3344/master/config-dev.yml


3.启动3355作为Client准备访问 http://localhost:3355/configInfo


测试结果:成功实现了客户端3355访问SpringCloud Config3344通过GitHub获取配置信息


9.3.2 存在的问题—分布式配置的动态刷新问题


1.Linux运维修改GitHub上的配置文件内容做调整–通过GitHub修改version=2.

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

bdb99dd30fbf044b04d32ecc9b2d041f.png


3.刷新3355,发现ConfigClient客户端没有任何响应


eb4c3874070f134394c23cc5333f4f01.png

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



1ed52ef62ea6df0154e98a2b9d802d89.png

5.难道每次运维修改配置文件,客户端都需要重启??卧槽,噩梦!


9.4 Config客户端之动态刷新


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


9.4.1 实现步骤


修改3355模块


  • POM引入actuator监控
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
  • 修改YML,暴露监控端口


# 暴露监控端点
management:
  endpoints:
    web:
      exposure:
        include: "*"


  • @RefreshScope业务类Controller修改
@RestController
@RefreshScope
public class ConfigClientController
{
    @Value("${config.info}")
    private String configInfo;
    @GetMapping("/configInfo")
    public String getConfigInfo() {
        return configInfo;
    }
}

此时修改github—> 3344 ---->3355


访问 http://localhost:3355/configInfo ,3355改变没有??? 没有


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


curl -X POST “http://localhost:3355/actuator/refresh”

94814238596669a66dfda7d99bcfa6b2.png


再次访问: http://localhost:3355/configInfo OK,O(∩_∩)O


结论:避免了服务重启,成功实现了客户端3355刷新到最新配置内容


9.4.2 项目中存在的问题


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

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

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

我们想大范围的自动刷新,求方法!—欲知如何处理,请看下一章…

相关文章
|
16天前
|
资源调度 Java 调度
Spring Cloud Alibaba 集成分布式定时任务调度功能
定时任务在企业应用中至关重要,常用于异步数据处理、自动化运维等场景。在单体应用中,利用Java的`java.util.Timer`或Spring的`@Scheduled`即可轻松实现。然而,进入微服务架构后,任务可能因多节点并发执行而重复。Spring Cloud Alibaba为此发布了Scheduling模块,提供轻量级、高可用的分布式定时任务解决方案,支持防重复执行、分片运行等功能,并可通过`spring-cloud-starter-alibaba-schedulerx`快速集成。用户可选择基于阿里云SchedulerX托管服务或采用本地开源方案(如ShedLock)
|
2月前
|
NoSQL Java Nacos
SpringCloud集成Seata并使用Nacos做注册中心与配置中心
SpringCloud集成Seata并使用Nacos做注册中心与配置中心
71 3
|
9天前
|
Java 微服务 Spring
Spring Cloud全解析:配置中心之解决configserver单点问题
但是如果该configserver挂掉了,那就无法获取最新的配置了,微服务就出现了configserver的单点问题,那么如何避免configserver单点呢?
|
19天前
|
Java 微服务 Spring
SpringBoot+Vue+Spring Cloud Alibaba 实现大型电商系统【分布式微服务实现】
文章介绍了如何利用Spring Cloud Alibaba快速构建大型电商系统的分布式微服务,包括服务限流降级等主要功能的实现,并通过注解和配置简化了Spring Cloud应用的接入和搭建过程。
SpringBoot+Vue+Spring Cloud Alibaba 实现大型电商系统【分布式微服务实现】
|
22天前
|
运维 Java Nacos
Spring Cloud应用框架:Nacos作为服务注册中心和配置中心
Spring Cloud应用框架:Nacos作为服务注册中心和配置中心
|
2月前
|
资源调度 Java 调度
Spring Cloud Alibaba 集成分布式定时任务调度功能
Spring Cloud Alibaba 发布了 Scheduling 任务调度模块 [#3732]提供了一套开源、轻量级、高可用的定时任务解决方案,帮助您快速开发微服务体系下的分布式定时任务。
14530 22
|
28天前
|
关系型数据库 MySQL 数据库
SpringCloud2023中使用Seata解决分布式事务
对于分布式系统而言,需要保证分布式系统中的数据一致性,保证数据在子系统中始终保持一致,避免业务出现问题。分布式系统中对数据的操作要么一起成功,要么一起失败,必须是一个整体性的事务。Seata简化了这个使用过程。
36 2
|
2月前
|
Java Spring
spring cloud gateway在使用 zookeeper 注册中心时,配置https 进行服务转发
spring cloud gateway在使用 zookeeper 注册中心时,配置https 进行服务转发
54 3
|
18天前
|
Dubbo Java 调度
揭秘!Spring Cloud Alibaba的超级力量——如何轻松驾驭分布式定时任务调度?
【8月更文挑战第20天】在现代微服务架构中,Spring Cloud Alibaba通过集成分布式定时任务调度功能解决了一致性和可靠性挑战。它利用TimerX实现任务的分布式编排与调度,并通过`@SchedulerLock`确保任务不被重复执行。示例代码展示了如何配置定时任务及其分布式锁,以实现每5秒仅由一个节点执行任务,适合构建高可用的微服务系统。
41 0
|
20天前
|
Java 应用服务中间件 数据库
SpringCloud:服务保护和分布式事务详解
SpringCloud:服务保护和分布式事务详解
85 0
下一篇
DDNS