java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > SpringCloud的Config

SpringCloud的Config配置中心详解

作者:七月J

这篇文章主要介绍了SpringCloud的Config配置中心详解,SpringCloud Config为微服务架构中的微服务提供集中化的外部配置支持,配置服务器为各个不同微服务应用的所有环境提供了一个中心化的外部配置,需要的朋友可以参考下

微服务

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

1、概述

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

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

具体能做嘛

与GitHub整合配置

由于Spring Cloud Config默认使用GIt来存储配置文件(也有其他方式,比如支持SVN和本地文件),但是最推荐的还是Git,而且使用的是HTTP/HTTPS访问的形式

2、Config服务端配置和测试

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

2.将其仓库克隆到本地,或者直接在github上进行修改

3.新建module 模块cloud-config-center-3344,即为Cloud的配置中心模块

4.配置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>

5.配置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

6.编写主启动类

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

7.windows下修改hosts文件,添加映射

127.0.0.1 config-3344.com

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

启动7001和3344微服务 访问://config-3344.com:3344/master/config-dev.yml

9.配置读取规则

例如://config-3344.com:3344/master/config-dev.yml

例如://config-3344.com:3344/config-dev.yml

例如://config-3344.com:3344/config/dev/master

总结:

3、Config客户端配置和测试

1.新建cloud-config-client-3355

2.配置POM

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

3.配置bootstrap.yml

bootstrap.yml是什么?

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

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

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

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

Bootstrap属性有高优先级,默认情况下,它们不会被本地配置覆盖。

Bootstrap context和Application Context有着不同的约定 ,所以新增了一个bootstrap.ymI文件, 保证Bootstrap Context和Application Context配置的分离。

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

bootstrap.ymI优先级高于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 #配置中心地址
#服务注册到eureka地址
eureka:
  client:
    service-url:
      defaultZone: http://localhost:7001/eureka

4.修改config-dev.yml配置并提交到GitHub中,比如加个变量age或者版本号version

5.编写主启动类

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

6.编写业务类

@RestController
//@RefreshScope
public class ConfigClientController {
    @Value("${config.info}")
    private String configInfo;  //要访问的3344上的信息
    @GetMapping("/configInfo")
    public String getConfigInfo(){
        return configInfo;
    }
}

7.测试

启动7001,3344,3355微服务,访问://localhost:3355/configInfo

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

此时出现个问题,分布式配置的动态刷新问题:

Linux运维修改GitHub上的配置文件内容做调整
刷新3344,发现ConfigServer配置中心立刻响应
刷新3355,发现ConfigClient客户端没有任何响应
3355没有变化除非自己重启或者重新加载,难到每次运维修改配置文件,客户端都需要重启?

4、Config客户端之间动态刷新

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

动态刷新步骤:

1.修改3355模块

2.POM引入actuator监控

3.修改YML,暴露监控端口

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

4.@RefreshScope业务Controller修改

5.此时在修改Github -> 访问3344 -> 访问3355;发现3355并没有变化

6.需要运维人员发送post请求刷新3355必须是post请求,curl -X POST “http://localhost:3355/actuator/refresh”

这里采用的是手动刷新的方式,但是有多个微服务客户端的时候呢?还采用手动刷新的方式?所以我们需要采用自动刷新的方式

7.成功实现了客户端3355刷新到最新配置内容,避免了重启服务 如果有收获!!!

到此这篇关于SpringCloud的Config配置中心详解的文章就介绍到这了,更多相关SpringCloud的Config内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文