分布式配置中心-远程GIT仓库

  • 一、准备远程GIT仓库中的配置文件
  • 二、搭建Config Server
  • 三、搭建Config Client
  • 四、实现自动刷新


一、准备远程GIT仓库中的配置文件

先在 github 中建立配置文件层级关系

public_configuration_center/public_config/config-client-a-sit.properties
 public_configuration_center/public_config/config-client-a-prd.properties

配置文件的内容大致如下:

tortoiseGit 配置远端仓库_微服务配置中心


tortoiseGit 配置远端仓库_微服务配置中心_02

用于区分,略有不同

二、搭建Config Server

  1. pom.xml
<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-actuator</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-starter-consul-discovery</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-config-server</artifactId>
		</dependency>
		<!-- spring boot test -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>
  1. application.yml
server: 
  #服务端口号 
  port: 7001
spring: 
  application: 
    #服务名称
    name: vis-server-config
  cloud: 
    config: 
      server:  
        git: 
          #配置文件所在仓库
          uri: https://gitee.com/baobaowu/public_configuration_center.git
          #username: aaa
          #password: 12342
          #配置文件所在目录
          search-paths: 
          - public_config
      label: master
    consul: 
      host: 192.168.12.125
      port: 8500
      discovery: 
        #是否需要注册到consul中
        register: true
        #服务地址直接为IP地址
        hostname: 192.168.12.1
        service-name: ${spring.application.name}
        healthCheckPath: /actuator/health
        healthCheckInterval: 10s

如果为私有仓库,则需要设置username、password的值

  1. 启动类
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.config.server.EnableConfigServer;

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

}
  1. 直接访问Server端的配置文件
    启动服务,接下来测试一下。
    Spring Cloud Config 有它的一套访问规则,我们通过这套规则在浏览器上直接访问就可以
/{application}/{profile}[/{label}]
 /{application}-{profile}.yml
 /{label}/{application}-{profile}.yml
 /{application}-{profile}.properties
 /{label}/{application}-{profile}.properties
  1. {application} 就是应用名称,对应到配置文件上来,就是配置文件的名称部分,例如我上面创建的配置文件。
    {profile} 就是配置文件的版本,我们的项目有开发版本、测试环境版本、生产环境版本,对应到配置文件上来就是以 application-{profile}.yml 加以区分,例如application-dev.yml、application-sit.yml、application-prod.yml。
    {label} 表示 git 分支,默认是 master 分支,如果项目是以分支做区分也是可以的,那就可以通过不同的 label 来控制访问不同的配置文件了。
  2. tortoiseGit 配置远端仓库_git_03


  3. tortoiseGit 配置远端仓库_spring cloud config_04

三、搭建Config Client

  1. pom.xml
<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-actuator</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-starter-consul-discovery</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-starter-config</artifactId>
		</dependency>
		<!-- spring boot test -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>
  1. bootstrap.yml
server: 
  #服务端口号 
  port: 9001
spring: 
  application: 
    #服务名称
    name: config-client-a
  cloud: 
    config: 
      discovery:
        enabled: true
        service-id: vis-server-config
      profile: sit
      label: master
    consul: 
      host: 192.168.12.125
      port: 8500
      discovery: 
        #是否需要注册到consul中
        register: true
        #服务地址直接为IP地址
        hostname: 192.168.12.1
        service-name: ${spring.application.name}
        healthCheckPath: /actuator/health
        healthCheckInterval: 10s

management:
  endpoint:
    shutdown:
      enabled: false
  endpoints:
    web: 
      exposure:
        include: "*"

注意这里是bootstrap.yml

  1. 启动类&获取数据的controller
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;

@SpringBootApplication
@EnableDiscoveryClient
public class VisServerConfigClientApplication {

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

}
import org.springframework.beans.factory.annotation.Value;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/config")
@RefreshScope
public class ConfigController {

	@Value("${myurl}")
	private String myurl;

	@RequestMapping("/getMyurl")
	public String getMyurl() {
		return myurl;
	}

}
  1. 验证结果
    访问http://127.0.0.1:9001/config/getMyurl
  2. tortoiseGit 配置远端仓库_git_05


四、实现自动刷新

Spring Cloud Config 在项目启动时加载配置内容这一机制,导致了它存在一个缺陷,修改配置文件内容后,不会自动刷新。例如我们上面的项目,当服务已经启动的时候,去修改 github 上的配置文件内容,这时候,再次刷新页面,对不起,还是旧的配置内容,新内容不会主动刷新过来。
但是,总不能每次修改了配置后重启服务吧。如果是那样的话,还是不要用它了为好,直接用本地配置文件岂不是更快。
它提供了一个刷新机制,但是需要我们主动触发。那就是 @RefreshScope 注解并结合 actuator ,注意要引入 spring-boot-starter-actuator 包。

  1. 修改config-client-a-sit.properties
  2. tortoiseGit 配置远端仓库_tortoiseGit 配置远端仓库_06

  3. 直接通过Config Server访问配置文件,Server端已经发生变化,但是Client无变化
  4. tortoiseGit 配置远端仓库_spring cloud config_07

  5. 修改Client端bootstrap.yml
    在 Config Client 端配置中增加 actuator 配置
management:
  endpoint:
    shutdown:
      enabled: false
  endpoints:
    web: 
      exposure:
        include: "*"
  1. 修改ConfigController.java,增加@RefreshScope注解
import org.springframework.beans.factory.annotation.Value;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/config")
@RefreshScope
public class ConfigController {

	@Value("${myurl}")
	private String myurl;

	@RequestMapping("/getMyurl")
	public String getMyurl() {
		return myurl;
	}

}
  1. 触发POST刷新动作,请求Client服务

我们发送 POST 请求到http://127.0.0.1:9001/actuator/refresh这个接口,用 postman 之类的工具即可,此接口就是用来触发加载新配置的,返回内容如下:

tortoiseGit 配置远端仓库_spring cloud config_08

  1. 刷新后,再验证结果
    访问http://127.0.0.1:9001/config/getMyurl
  2. tortoiseGit 配置远端仓库_spring cloud config_09