飞道的博客

我的Spring Cloud(九):Config 配置中心

364人阅读  评论(0)

一、概述

    什么是配置中心呢,在基于微服务的分布式系统中,每个业务模块都可以拆分成独立自主的服务,由多个请求来协助完成某个需求,那么在某一具体的业务场景中,某一个请求需要调用多个服务来完成,那么就存在一个问题,多个服务所对应的配置项也是非常多的,每个服务都有自己的配置文件,如果某一个微服务配置进行了修改,那么其他的服务消费者也需要做出对应的调整,如果在每个服务消费者对应的配置文件中去修改的话是非常麻烦的,并且改完后每个服务还需要重新部署。这时候就需要把各个服务的配置进行统一管理,便于部署与维护,所以Spring Cloud提出了解决方法,就是Spring Cloud Config.

    Spring Cloud Config可以通过服务端为多个客户端提供配置服务。Spring Cloud Config可以将配置文件存储在本地,也可以将配置文件存储在远程仓库中。可以在不重启微服务的前提下来修改它的配置。具体操作就是创建Config Server,通过它管理所有的配置文件。

二、实战!本地配置中心

    1.创建Maven工程,pom.xml配置如下:


  
  1. <dependency>
  2. <groupId>org.springframework.cloud </groupId>
  3. <artifactId>spring-cloud-config-server </artifactId>
  4. <version>2.0.2.RELEASE </version>
  5. </dependency>

    2.创建application.yml,配置详情如下:


  
  1. server:
  2. port: 8762
  3. spring:
  4. application:
  5. name: nativeconfigserver
  6. profiles:
  7. active: native
  8. cloud:
  9. config:
  10. server:
  11. native:
  12. search-locations: classpath:/shared

    注解说明

        * profiles.active:配置文件获取方式,native表示从本地获取

        * cloud.config.server.native.search-locations:本地配置文件存放的路径,classpath表示当前文件所在目录

    3.resources路径下创建shared文件夹,并且在此目录下创建configclient-dev.yml,配置文件内容如下:


  
  1. server:
  2. port: 8070
  3. foo: foo version 1

    4.创建启动类,代码如下:


  
  1. package com.zing;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.cloud.config.server.EnableConfigServer;
  5. @SpringBootApplication
  6. @EnableConfigServer
  7. public class NativeConfigServerApplication {
  8. public static void main(String[] args) throws Exception {
  9. SpringApplication.run(NativeConfigServerApplication.class, args);
  10. }
  11. }

    注解说明

        * @EnableConfigServer:声明一个配置中心

    5.创建一个客户端来读取本地配置中心的配置文件,先创建Maven项目,pom.xml配置如下:


   
  1. <dependency>
  2. <groupId>org.springframework.cloud </groupId>
  3. <artifactId>spring-cloud-starter-config </artifactId>
  4. <version>2.0.2.RELEASE </version>
  5. </dependency>
wAAACH5BAEKAAAALAAAAAABAAEAAAICRAEAOw==

    6.创建一个bootstrap.yml,文件名必须为这个,不能是application.yml这个默认配置文件的名称,因为我们的配置要从配置中心拿,我们只需要写一些其他的配置项信息,如下:


  
  1. spring:
  2. application:
  3. name: configclient
  4. profiles:
  5. active: dev
  6. cloud:
  7. config:
  8. uri: http: //localhost:8762
  9. fail-fast: true

    注解说明

        * cloud.config.uri:本地Config Server 的访问路径

        * cloud.config.fail-fase:设置客户端优先判断Config Server获取是否正常

        * 通过spring.application.name结合spring.profiles.active拼接获得目标配置文件名称configclient-dev.yml,去Config Server中查找该文件。

    7.创建客户端启动类,代码如下:


  
  1. package com.zing;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. @SpringBootApplication
  5. public class NativeConfigClientApplication {
  6. public static void main(String[] args) throws Exception {
  7. SpringApplication.run(NativeConfigClientApplication.class, args);
  8. }
  9. }

    8.创建controller代码如下:


  
  1. package com.zing.handler;
  2. import org.springframework.beans.factory.annotation.Value;
  3. import org.springframework.web.bind.annotation.GetMapping;
  4. import org.springframework.web.bind.annotation.RequestMapping;
  5. import org.springframework.web.bind.annotation.RestController;
  6. @RestController
  7. @RequestMapping( "/native")
  8. public class NativeConfigHandler {
  9. @Value( "${server.port}")
  10. private String port;
  11. @Value( "${foo}")
  12. private String foo;
  13. @GetMapping( "/index")
  14. public String index() {
  15. return this.port+ "-"+ this.foo;
  16. }
  17. }

    9.依次启动配置中心服务nativeconfigserver和配置中心客户端nativeconfigclient,不同启动注册中心,因为也没有配置注册中心地址。两个服务都启动好之后,我们访问 http://localhost:8070/native/index 可以看到如下页面:

      结果和我们预想的一样,客户端nativeconfigclient读取到了配置中心nativeconfigserver的配置文件信息,成功验证了Spring Cloud Config的本地配置中心功能。

三、总结

    Spring Cloud Config可以在不重启服务端的前提下通过修改配置中心的配置文件来修改它的配置,便于我们集中化管理集群配置 。 目前除了支持本地存储以外,还可以支持Git以及Subversion。 除了Spring Cloud Config配置中心外,还有一个组件是不得不说的,那就是Spring Cloud Zipkin服务跟踪,请期待下一篇《我的Spring Cloud(十):Zipkin 服务跟踪》。

    更多精彩内容,敬请扫描下方二维码,关注我的微信公众号【Java觉浅】,获取第一时间更新哦!


转载:https://blog.csdn.net/qq_34942272/article/details/106353761
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场