欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SpringCloud学习笔记(7):使用Spring Cloud Config配置中心

程序员文章站 2022-09-27 16:38:40
简介 Spring Cloud Config为分布式系统中的外部化配置提供了服务器端和客户端支持,服务器端统一管理所有配置文件,客户端在启动时从服务端获取配置信息。服务器端有多种配置方式,如将配置文件存储在本地或者存储在远程Git仓库等等,并且在配置文件被更改时,可以通过多种途径如actuator的 ......

简介

spring cloud config为分布式系统中的外部化配置提供了服务器端和客户端支持,服务器端统一管理所有配置文件,客户端在启动时从服务端获取配置信息。服务器端有多种配置方式,如将配置文件存储在本地或者存储在远程git仓库等等,并且在配置文件被更改时,可以通过多种途径如actuator的/refresh端点或者spring cloud bus来动态刷新客户端的配置,而无需重新启动客户端。

项目介绍

  1. sc-parent,父模块(请参照springcloud学习笔记(1):eureka注册中心)
  2. sc-eureka,注册中心(请参照springcloud学习笔记(1):eureka注册中心)
  3. sc-config-client,访问配置中心的客户端
  4. sc-config-server,本地配置中心
  5. sc-config-server-git,远程配置中心

创建访问配置中心的客户端

1.在父模块下创建子模块项目sc-config-client,pom.xml:

<project xmlns="http://maven.apache.org/pom/4.0.0" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://maven.apache.org/pom/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelversion>4.0.0</modelversion>
  <parent>
    <groupid>com.cf</groupid>
    <artifactid>sc-parent</artifactid>
    <version>0.0.1-snapshot</version>
  </parent>
  <artifactid>sc-config-client</artifactid>
  
  <dependencies>
    <dependency>
        <groupid>org.springframework.cloud</groupid>
        <artifactid>spring-cloud-starter-config</artifactid>
    </dependency>
  </dependencies>
</project>

2.创建启动类configclient.configclientapplication:

package configclient;
import org.springframework.boot.springapplication;
import org.springframework.boot.autoconfigure.springbootapplication;

@springbootapplication
public class configclientapplication {
    public static void main(string[] args) {
        springapplication.run(configclientapplication.class, args);
    }
}

3.创建configclient.controller.configclientcontroller:

package configclient.controller;

import org.springframework.beans.factory.annotation.value;
import org.springframework.web.bind.annotation.getmapping;
import org.springframework.web.bind.annotation.requestmapping;
import org.springframework.web.bind.annotation.restcontroller;

@restcontroller
@requestmapping("/client")
public class configclientcontroller {
    @value("${nickname}")
    private string nickname;
    
    @getmapping("/hello")
    public string hello(){
        return "hello," + nickname;
    }
}

4.创建bootstrap.yml:

spring:
  application:
    name: sc-config-client
  profiles:
    active: dev
  cloud:
    config:
      uri:  http://localhost:9003
      fail-fast: true

server:
  port: 9002

spring.cloud.config.uri:指定配置中心地址
spring.cloud.config.fail-fase:当连接不上配置中心服务器时,是否使当前客户端异常停止,而不是以默认配置启动。

使用本地配置中心

1.在父模块下创建子模块项目sc-config-server,pom.xml:

<project xmlns="http://maven.apache.org/pom/4.0.0" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://maven.apache.org/pom/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelversion>4.0.0</modelversion>
  <parent>
    <groupid>com.cf</groupid>
    <artifactid>sc-parent</artifactid>
    <version>0.0.1-snapshot</version>
  </parent>
  <artifactid>sc-config-server</artifactid>
  
  <dependencies>
    <dependency>
        <groupid>org.springframework.cloud</groupid>
        <artifactid>spring-cloud-config-server</artifactid>
    </dependency>
  </dependencies>
</project>

2.创建启动类configserver.configserverapplication:

package configserver;
import org.springframework.boot.springapplication;
import org.springframework.boot.autoconfigure.springbootapplication;
import org.springframework.cloud.config.server.enableconfigserver;

@springbootapplication
@enableconfigserver
public class configserverapplication {
    public static void main(string[] args) {
        springapplication.run(configserverapplication.class, args);
    }
}

3.创建application.yml:

server:
  port: 9003
      
spring:
  application:
    name: sc-config-server
  profiles:
    active: native
  cloud:
    config:
      server:
        native:
          searchlocations: classpath:/conf    

spring.profiles.active:配置文件的获取方式
spring.cloud.config.server.native.search-locations:本地配置文件的存放路径

4.创建/src/main/resources/conf/sc-config-client-dev.yml文件:

nickname: luke 

该文件内容为客户端需要从服务端获取的配置信息,文件名称和客户端配置是相对应的,如sc-config-client-dev.yml=【spring.application.name】-【 spring.profiles.active】.yml

5.测试

启动本地配置中心sc-config-server成功后再启动客户端sc-config-client,访问http://localhost:9002/client/hello,客户端成功从配置中心获取nickname的配置:

SpringCloud学习笔记(7):使用Spring Cloud Config配置中心

使用远程配置中心

1.在父模块下创建子模块项目sc-config-server-git,pom.xml:

<project xmlns="http://maven.apache.org/pom/4.0.0" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://maven.apache.org/pom/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelversion>4.0.0</modelversion>
  <parent>
    <groupid>com.cf</groupid>
    <artifactid>sc-parent</artifactid>
    <version>0.0.1-snapshot</version>
  </parent>
  <artifactid>sc-config-server-git</artifactid>
  
  <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>
  </dependencies>
</project>

2.创建启动类configserver.gitconfigserverapplication:

package configserver;
import org.springframework.boot.springapplication;
import org.springframework.boot.autoconfigure.springbootapplication;
import org.springframework.cloud.config.server.enableconfigserver;

@springbootapplication
@enableconfigserver
public class gitconfigserverapplication {
    public static void main(string[] args) {
        springapplication.run(gitconfigserverapplication.class, args);
    }
}

3.创建application.yml:

server:
  port: 9005

eureka:
  client:
    serviceurl:
      defaultzone: http://localhost:8080/eureka/ 

spring:
  application:
    name: sc-config-server-git
  cloud:
    config:
      server:
        git:
          uri: https://github.com/yinchao3577/test777.git
          username: xxxxx
          password: xxxxx
      label: master    
      fail-fast: true       

spring.cloud.config.server.git.uri:git存储库地址
spring.cloud.config.server.git.username:用户名
spring.cloud.config.server.git.password:密码
spring.cloud.config.server.git.searchpaths:配置文件所在目录,若在根目录则无需配置
spring.cloud.config.label:git repository的分支,默认为master

4.更改客户端配置

pom.xml添加eureka依赖:

    <dependency>
        <groupid>org.springframework.cloud</groupid>
        <artifactid>spring-cloud-starter-netflix-eureka-client</artifactid>
    </dependency>

bootstrap.yml改为:

spring:
  application:
    name: sc-config-client
  cloud:
    config:
      name: myconfig2
      label: master
      discovery:
        enabled: true
        service-id: sc-config-server-git #使用eureka注册中心来发现config配置中心服务

server:
  port: 9002
    
eureka:
  client:
    serviceurl:
      defaultzone: http://localhost:8080/eureka/

spring.cloud.config.name:远程仓库中配置文件的名称
spring.cloud.config.discovery.enabled:是否开启配置中心服务发现
spring.cloud.config.discovery.service-id:配置中心服务名称

5.测试

远程仓库myconfig2.yml值为:

nickname: grace

依次启动注册中心sc-eureka、远程配置中心sc-config-server-git,sc-config-server-git启动成功后再启动客户端sc-config-client,访问http://localhost:9002/client/hello,客户端成功从配置中心获取nickname的配置:

SpringCloud学习笔记(7):使用Spring Cloud Config配置中心

手动刷新配置

actuator中包含一个/refresh的端点,用于配置的刷新。对该端点的调用实质是对refreshscope类的调用,refreshscope是上下文中的一个bean,它包含一个公共refreshall()方法和refresh(string)方法,分别用来刷新范围内的所有bean或者指定的单个bean。

1.更改客户端配置

pom.xml添加actuator依赖:

    <dependency>
        <groupid>org.springframework.boot</groupid>
        <artifactid>spring-boot-starter-actuator</artifactid>
    </dependency>

bootstrap.yml添加开启refresh节点的配置:

management:
  endpoints:
    web:
      exposure:
        include: 'refresh'

2.在configclientcontroller类上添加@refreshscope注解,表示该类可以在运行时刷新配置,当调用完/actuator/refresh端点后,在下一次访问该controller时,该controller会重新初始化以及注入到容器中,初始化时会重新加载配置,所以在访问时将会访问到最新配置的值。

3.按之前测试的步骤进行启动和访问,修改github中配置的值后,重新访问客户端后值并没有更改,通过postman工具发送post请求到http://localhost:9002/actuator/refresh后,再重新访问客户端,值已经被更新成最新配置的值。