Config 分布式配置中心

概述

微服务意味着要将单体应用中的业务拆分成个个子服务,每个服务的粒度相对较小因此系统中会出现大量的服务

由于每个服务都需要必要的配置信息才能运行,所以一套集中式的、动态的配置管理设施是必不可少的

Spring Cloud提供了 ConfigServer 来解决这个问题,我们每个微服务自己带着一个 application.yml,上百个配置文件的管理会导致膨胀

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

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

Spring Cloud Config分为服务端客户端两部分

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

主要分支

  • 集中管理配置文件
  • 不同环境不同配置,动态化的配置更新,分环境部署比如 dev/test/prod/beta/release
  • 运行期间动态调整配置,不再需要在每个服务部署的机器上编写配置文件,服务会向配置中心统一拉取配置自己的信息
  • 当配置发生变动时,服务不需要重启即可感知到配置的变化并应用新的配置
  • 将配置信息以REST接口的形式暴露
  • Github整合配置:由于 Spring Cloud Config默认使用Git来存储配置文件(也有其它方式比如支持SVN和本地文件),但最推荐的还是Git,而且使用的是http/https访问的形式

服务端配置

首先要在 Github 上创建一个 Config 仓库,来配置环境

  1. 新建一个module
  2. 修改 pom 依赖
<!-- config-server -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
  1. 配置 yml
server:
port: 3344 spring:
application:
name: Config-center
cloud:
config:
server:
git:
# Github 上仓库的名字
uri: https://github.com/odousnag/SpringCloudStudy.git
# 搜索目录
search-paths:
- springcloud-config
# 读取分支
label: master # Eureka
eureka:
client:
service-url:
# 单机版
# defaultZone: http://localhost:7001/eureka/
# 集群版
defaultZone: http://eureka7001.com:7001/eureka, http://eureka7002.com:7002/eureka
  1. 主启动类开启注解
@SpringBootApplication
@EnableEurekaClient
@EnableConfigServer
public class ConfigCenterMain {
public static void main(String[] args) {
SpringApplication.run(ConfigCenterMain.class,args);
}
}
  1. windows 下更改 hosts 增加映射

  2. 测试是否能从 Github 上获取配置内容



    启动配置中心:http://config3344.com:3344/master/config-dev.yml



    7.配置读写规则

    官网上的配置读写规则

常用的三种:
/{label}/{application}-{profile}.properties
master 分支:http://config3344.com:3344/master/config-xxx.yml
dev 分支:http://config3344.com:3344/dev/config-xxx.yml /{application}/{profile}[/{label}]
http://config3344.com:3344/config-xxx.yml /{application}-{profile}.yml
http://config3344.com:3344/config/xxx/master

客户端配置

  1. 新建一个module
  2. 修改 pom 依赖
<!-- spring-cloud-starter-config -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
  1. 新建一个 bootstrap.yml

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

    Spring Cloud会创建一个 "Bootstrap Context",作为 Spring应用的 Application Context的父上下文

    初始化的时候, Bootstrap Context 负责从外部源加载配置属性并解析配置,这两个上下文共享—个从外部获取的 Environment

    将 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
# 配置中心地址
uri: http://localhost:3344 # Eureka
eureka:
client:
service-url:
# 单机版
# defaultZone: http://localhost:7001/eureka/
# 集群版
defaultZone: http://eureka7001.com:7001/eureka, http://eureka7002.com:7002/eureka
  1. 修改 application-dev.yml 配置并提交到 Github 中,比如加个变量 age 或者版本号 version
  2. 业务类测试
@RestController
public class ClientController { /**
* 获取application-dev的信息
*/
@Value("${config.info}")
private String configInfo; @GetMapping("/configInfo")
public String getConfigInfo(){
return configInfo;
}
}



实现了客户端访问SpringCloudConfig通过GitHub获取配置信息

客户端动态刷新

动态刷新问题

Linux运维修改GitHub上的配置文件内容做调整,刷新服务端,发现ConfigServer配置中心立刻响应,刷新客户端,发现ConfigClient客户端没有任何响应

修改客户端

  1. 引入 actuator 监控依赖
<!-- spring-boot-starter-actuator -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
  1. 修改 yml 配置,暴露监控端口
# 暴露监控端口
management:
endpoints:
web:
exposure:
include: "*"
  1. 业务类修改,增加注解 @RefreshScope
  2. 发送Post请求刷新 客户端
curl -X POST "http://localhost:3355/actuator/refresh"

出现的问题:

现在每次更改,都要手动发动请求,这不合适,实现广播,一次通知,处处修改

下一章到消息总线会讲到

SpringCloud(五)GateWay网关的更多相关文章

  1. SpringCloud:gateway网关模块启动报错

    1.错误信息 org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with na ...

  2. SpringCloud使用GateWay网关前端请求请求跨域处理

    增加配置类 CorsConfig.java import org.springframework.context.annotation.Bean; import org.springframework ...

  3. SpringCloud + Consul服务注册中心 + gateway网关

    1  启动Consul 2  创建springcloud-consul项目及三个子模块 2.1 数据模块consul-producer 2.2 数据消费模块consul-consumer 2.3 ga ...

  4. SpringCloud(四)GateWay网关

    GateWay网关 概述简介 Gateway是在 Spring生态系统之上构建的AP网关服务,基于 Spring5, Spring Boot2和 Project Reactor等技术. Gateway ...

  5. Spring Cloud实战 | 第十一篇:Spring Cloud Gateway 网关实现对RESTful接口权限控制和按钮权限控制

    一. 前言 hi,大家好,这应该是农历年前的关于开源项目 的最后一篇文章了. 有来商城 是基于 Spring Cloud OAuth2 + Spring Cloud Gateway + JWT实现的统 ...

  6. 微服务SpringCloud之GateWay路由

    在前面博客学习了网关zuul,今天学下spring官方自带的网关spring cloud gateway.Zuul(1.x) 基于 Servlet,使用阻塞 API,它不支持任何长连接,如 WebSo ...

  7. SpringCloud之Gateway

    一.为什么选择SpringCloud Gateway而不是Zuul? Gateway和Zuul的职责一样,都承担着请求分发,类似Nginx分发到后端服务器. 1.SpingCloud Gateway ...

  8. Gateway网关

    前提要在注册中心把网关和服务都进行注册 通俗来说,网关就是指在客户端和服务端的一面墙,这面墙有请求转发,负载均衡,权限控制,跨域,熔断降级,限流保护等功能. 客户端发送请求,请求先通过网关,网关根据特 ...

  9. .net core下,Ocelot网关与Spring Cloud Gateway网关的对比测试

    有感于 myzony 发布的 针对 Ocelot 网关的性能测试 ,并且公司下一步也需要对.net和java的应用做一定的整合,于是对Ocelot网关.Spring Cloud Gateway网关做个 ...

  10. Spring Cloud gateway 网关服务二 断言、过滤器

    微服务当前这么火爆的程度,如果不能学会一种微服务框架技术.怎么能升职加薪,增加简历的筹码?spring cloud 和 Dubbo 需要单独学习.说没有时间?没有精力?要学俩个框架?而Spring C ...

随机推荐

  1. C++ folly库解读(二) small_vector —— 小数据集下的std::vector替代方案

    介绍 使用场景 为什么不是std::array 其他用法 其他类似库 Benchmark 代码关注点 主要类 small_vector small_vector_base 数据结构 InlineSto ...

  2. Java数组之冒泡排序

    package com.kangkang.array; import java.util.Arrays; public class demo07 { public static void main(S ...

  3. MongoDB 在Node中的应用

    转: MongoDB 在Node中的应用 文章目录 一 .什么是 MongoDB? 二.小Demo 三.Demo 增删改查 3.1 新增 3.2 查询 3.2.1 查询所有 [{},{}] 找不到返回 ...

  4. web实现时钟效果

    纯原生开发时钟效果,话不多说直接上代码. HTML标签部分 <div class="cricles">         <div class="poin ...

  5. 学员和教师管理优化用例点整理v2.0

    更新记录: 更新内容 更新人 更新时间 新建 Young 2021.01.08 12:06 彭洋洋确认结果疑问 Young 2021.01.08 15:06 问题集锦 1. 购买成功页点击完成返回路径 ...

  6. ASP.NET Core与Redis搭建一个简易分布式缓存

    ​本文主要介绍了缓存的概念,以及如何在服务器内存中存储内容.今天的目标是利用IDistributedCache来做一些分布式缓存,这样我们就可以横向扩展我们的web应用程序. 在本教程中,我将使用Re ...

  7. c/s应用程序自动更新组件GeneralUpdate3.2.1发布

    一.组件简介 GeneralUpdate是基于.net standard 开发的一款(c/s应用)自动升级程序.该组件将更新的核心部分抽离出来方便应用于多种项目当中目前适用于wpf,控制台应用,win ...

  8. Centos7安装Nacos单机模式以及集群模式(包含nignx安装以及实现集群)的相关配置

    Nacos 致力于帮助您发现.配置和管理微服务.Nacos 提供了一组简单易用的特性集,帮助您快速实现动态服务发现.服务配置.服务元数据及流量管理. Nacos支持三种部署模式 单机模式 - 用于测试 ...

  9. PAT (Advanced Level) Practice 1001 A+B Format (20 分) 凌宸1642

    PAT (Advanced Level) Practice 1001 A+B Format (20 分) 凌宸1642 题目描述: Calculate a+b and output the sum i ...

  10. SVN讲解

    1.SVN是什么? 代码版本管理工具 它能记住你每次的修改 查看所有的修改记录 恢复到任何历史版本 恢复到已经删除的文件 2.SVN和Git相比,有什么优势? 使用简单,上手快 git没有目录级权限控 ...