09 服务配置Config

服务配置Config

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

SpringCloud 提供了 ConfigServer 来解决这个问题,一个微服务都带着一个application.yml,上百个配置文件的管理

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

09 服务配置Config

与 GitHub 整合配置 使用Git 来存储配置文件 使用 http/https 访问的模式

Config服务端配置与测试

09 服务配置Config

在GitHub上新建一个名为springcloud-config的新Repository(需要是public的仓库,private的访问不了)
09 服务配置Config

  1. 新建模块cloud-config-center-3344
  2. pom
  <dependencies>
        <!--config server-->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-config-server</artifactId>
        </dependency>
        <!--eureka client(通过微服务名实现动态路由)-->
        <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>

  1. yml
server:
  port: 3344


spring:
  application:
    name: cloud-config-center #注册进Eureka服务器的微服务名
  cloud:
    config:
      server:
        git:
          uri: https://gitee.com/pipipikaqiu/springcloud-config.git  #git的仓库地址
          search-paths:   #搜索目录
            - springcloud-config
      label: master   #读取的分支


eureka:
  client:
    service-url:
      defaultZone: http://localhost:7001/eureka   #服务注册到的eureka地址


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

  1. 修改hosts文件,增加映射

127.0.0.1 config-3344.com

  1. 在GitHub中的3个文件加入一些文字 数据

启动7001,3344,然后在浏览器输入http://config-3344.com:3344/master/config-dev.yml(成功获取到github上的配置文件数据)

09 服务配置Config

配置的读取规则

09 服务配置Config

Config客户端之动态刷新

09 服务配置Config

  1. pom文件

和上面一样 修改第一个

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-config</artifactId>
        </dependency>
  1. yml 文件 bootstrap.yml
    09 服务配置Config
server:
  port: 3355


spring:
  application:
    name: config-client
  cloud:
    config: #config客户端配置
      label: master   #分支名称
      name: config    #配置文件名称       这三个综合:master分支上的config-dev.yml的配置文件
      profile: dev    #读取后缀名称       被读取到http://config-3344.com:3344/master/config/dev
      uri: http://localhost:3344  #配置中心地址


eureka:
  client:
    service-url:
      defaultZone: http://localhost:7001/eureka   #服务注册到的eureka地址

  1. 主启动类

    @EnableEurekaClient
    @SpringBootApplication
    public class ConfigClientMain3355 {
    	public static void main(String[] args) {
            SpringApplication.run(ConfigClientMain3355.class, args);
        }
    }
    
    1. controller(读取GitHub的配置文件)
@RestController
public class ConfigClientController {

    @Value("${config.info}")	//spring的@Value注解
    private String configInfo;

    @GetMapping("/configInfo")
    public String getConfigInfo(){
        return configInfo;
    }
}
  1. 测试 http://localhost:3355/configInfo
    09 服务配置Config

动态刷新问题

09 服务配置Config

  1. 修改GitHub上的config-dev.yml文件的版本号为2。
  2. 刷新http://config-3344.com:3344/master/config-dev.yml,版本号发生改变。
  3. 刷新http://localhost:3355/configInfo,没有改变。
  4. 重新启动 3355 服务 再刷新 才能更新数据

Config客户端动态刷新

09 服务配置Config

  1. 往config客户端3355在pom中添加
    <!--监控  除了网关-->
	<dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>

  1. 然后在bootstrap.yml中添加
#暴露监控端点
management:
  endpoints:
    web:
      exposure:
        include: "*"
  1. 在ConfigClientController类上加上@RefreshScope注解。

  2. 重启3355。

  3. 修改GitHub上文件的版本号,然后访问3344和3355。(启动完成后再修改)
    http://config-3344.com:3344/master/config-dev.yml

  4. http://localhost:3355/configInfo(没读取到,需要发送post请求刷新3355才能生效)

  5. 打开终端,输入curl -X POST "http://localhost:3355/actuator/refresh"

  6. 刷新http://localhost:3355/configInfo 后成功

如果有多个微服务客户端 每个微服务都要执行一次 post 请求 分布式的自动刷新配置 需要 Bus

上一篇:(5)优化TCP编写 客服端上传图片,服务端给客服端提示接收状态


下一篇:springboot-yml-class-configuration