SpringCloud快速入门学习(三)之实现自动刷新配置——Config(配置中心)

前言

在这篇文章介绍并记录如何实现SpringCloud config 配置中心,实现使用github来进行管理配置。
此篇文章SpringCloud快速入门学习(一)之服务注册与发现——Netflix Eureka的第二篇

根据springcloud官方文档描述

Spring Cloud配置为分布式系统中的外部化配置提供服务器端和客户端支持。使用配置服务器,您可以在中心位置管理所有环境中应用程序的外部属性。客户机和服务器上的概念与Spring环境和PropertySource抽象完全相同,因此它们非常适合Spring应用程序,但可以用于任何语言中运行的任何应用程序。随着应用程序从开发人员到测试人员再到生产人员的部署管道中移动,您可以管理这些环境之间的配置,并确保应用程序在迁移时拥有运行所需的一切。服务器存储后端的默认实现使用git,因此它很容易支持有标签的配置环境版本,并且可以使用各种工具来管理内容。添加替代实现并用Spring配置将其插入是很容易的。
讲了一大堆,确实有点抽象,有点看不懂。直接上手好了。

统一配置中心 config

记住上面第一句话就好了
Spring Cloud配置为分布式系统中的外部化配置提供服务器端和客户端支持。使用配置服务器,您可以在中心位置管理所有环境中应用程序的外部属性。
配置统一管理的好处是在日后大规模集群部署服务应用时相同的服务配置一致,
日后再修改配置只需要统一修改全部同步,不需要一个一个服务手动维护


image.png

配置中心的客户端和服务端

@EnableConfigServer 注解 以及依赖包

        
            org.springframework.cloud
            spring-cloud-config-server
        

作为服务端配置中心

添加此依赖包

        
            org.springframework.cloud
            spring-cloud-config-client
        

作为客户端配置中心拉取服务端的配置
下面会用代码讲解

一、配置中心实现
在原来上篇的项目里在创建子工程命名为mi-config

1.1 子工程 mi-config包目录
image.png
1.2 添加pom 依赖


    
        Spring-Coud-Example
        com.mi
        1.0-SNAPSHOT
    
    4.0.0

    com.mi
    mi-config
    1.0-SNAPSHOT
    jar

    
        
        
            org.springframework.boot
            spring-boot-starter-web
        
        
        
            org.springframework.cloud
            spring-cloud-starter-netflix-eureka-client
        
        
            org.springframework.boot
            spring-boot-test
        
        
        
            org.springframework.cloud
            spring-cloud-config-server
        
      
        
            org.springframework.cloud
            spring-cloud-config-monitor
        
        
        
            org.springframework.cloud
            spring-cloud-starter-bus-amqp
        
            
        
            org.springframework.boot
            spring-boot-starter-actuator
        
    

1.3 application.yml
server:
  port: 8090
spring:
  application:
    name: config
  cloud:
    config:
      server:
        git:
          uri: https://github.com/mi499938150/config-repo.git # github的地址
          username: #你的账号  
          password: #你的密码
          basedir: D:\Program Files\config\basefir #存放的目录
eureka:
  client:
    service-url:
      defaultZone: http://localhost:8000/eureka/
management:
  endpoints:
    web:
      exposure:
        include: "*"
1.4 ConfigApplication
@SpringBootApplication
@EnableDiscoveryClient
@EnableConfigServer
public class ConfigApplication {

    public static void main(String[] args) {
        SpringApplication.run(ConfigApplication.class, args);
    }
}

二、github 创建 config Repositories

访问github 官方地址 https://github.com/

2.1 创建 config-repo Repositories
image.png
2.1.1 接着输入名字点击Create
image.png
2.1.2 在点击进去创建File

创建appoint-dev.yml

image.png

2.1.3 贴上配置代码
image.png
2.1.4 开启Application启动类

第一步开启:快速入门学习(一)里eurekaApplication
第二步开启:本篇文写的ConfigApplication
访问localhost:8090/appoint-dev.yml
然后会从github上拉取到本地地址,从日志就可以看出


image.png
2 .1.5 访问地址

访问localhost:8090/appoint-dev.yml


image.png
2.1.6对于Config名命介绍
/{name}-{profiles}.yml          例如 :appoint-dev.yml
  1.name 服务器      =>就是yml里面的applicatoin:name    
  2.profiles 环境       =>就是dev,test,
/{label}/{name}-{profiles}.yml   
 1.label   是创建分支目录,把配置文件放在里面
  2和上同上
http://localhost:8080/release/order-dev.yml 例如:创建了release
                                         3     2       1  

三、Spring Cloud Bus 实现动态刷新

在这介绍一下如何使用Spring Cloud Bus实现自动刷新配置,Bus在这里是总线的意思。


image.png

Spring Cloud Bus会向外提供一个http接口,即图中的/actuator/bus-refresh。我们将这个接口配置到远程的git上,当git上的文件内容发生变动时,就会自动调用/bus-refresh接口。Bus就会通知config-server,config-server会发布更新消息到消息队列中,其他服务订阅到该消息就会信息刷新,从而实现整个微服务进行自动刷新。

3.1 RabbitMQ

在这里采用的是Win10,会有多个版本,选择win版下载后安装
在官网上下载:地址链接为:https://www.rabbitmq.com/download.html

image.png

3.1.1 开启RabbitMQ

安装后启用web管理UI,进入RabbitMQ Server\rabbitmq_server-3.6.6\sbin,输入命令rabbitmq-plugins enable rabbitmq_management


image.png
3.1.2 访问RabbitMQ

http://localhost:15672
登录账号:guest,密码:guest

image.png

3.1.3 重新启动configApplication

rabbitMQ 控制台会出现总线队列 有连接config地址的项目启动以此类推


image.png
3.2 集成Github WebHooks实现动态更新
3.2.1 申请一个免费内网穿透隧道

https://natapp.cn/ 进行申请
由于是申请的是免费,每重启一次都会刷一下地址

image.png

3.2.2 在安装后目录下开启穿透隧道

打开cmd 输入 natapp -authtoken=c33cc0697bfb76a6


image.png

开启成功


image.png
3.2.3 进入github之前创建目录config-repo的仓库管理后选择WebHook

输入地址穿透王地址/monitor


image.png

4.开始测试

4.1 开始访问没有修改的过的

http://localhost:8090/appoint-dev.yml

image.png

4.2 appoint-dev.yml 进行修改后配置后提交

从日志看到已经再刷新从github拉取到本地

image.png

接着访问
http://localhost:8090/appoint-dev.yml
更新成功

image.png

github项目地址:https://github.com/mi499938150/SpringCloud-Example.git

你可能感兴趣的:(SpringCloud快速入门学习(三)之实现自动刷新配置——Config(配置中心))