Spring Cloud Config是Spring Cloud团队创建的一个全新项目,用来为分布式系统中的基础设施和微服务应用提供集中化的外部配置支持,它分为服务端与客户端两个部分。其中服务端也称为分布式配置中心,它是一个独立的微服务应用,用来连接配置仓库并为客户端提供获取配置信息、加密/解密信息等访问接口;而客户端则是微服务架构中的各个微服务应用或基础设施,它们通过指定的配置中心来管理应用资源与业务相关的配置内容,并在启动的时候从配置中心获取和加载配置信息。Spring Cloud Config实现了对服务端和客户端中环境变量和属性配置的抽象映射,所以它除了适用于Spring构建的应用程序之外,也可以在任何其他语言运行的应用程序中使用。由于Spring Cloud Config实现的配置中心默认采用Git来存储配置信息,所以使用Spring Cloud Config构建的配置服务器,天然就支持对微服务应用配置信息的版本管理,并且可以通过Git客户端工具来方便的管理和访问配置内容。当然它也提供了对其他存储方式的支持,比如:SVN仓库、本地化文件系统。

在本文中,我们将学习如何构建一个基于Git存储的分布式配置中心,并对客户端进行改造,并让其能够从配置中心获取配置信息并绑定到代码中的整个过程。

准备配置仓库

  • 准备一个git仓库,可以在码云或Github上创建都可以。

config-client

  • ,那么我们可以在git仓库中该项目的默认配置文件config-client.yml


info:

  profile:


config-client-dev.yml

info:

  profile:

构建配置中心

通过Spring Cloud Config来构建一个分布式配置中心非常简单,只需要三步:

config-server-git

  • ,并在

pom.xml

  • 中引入下面的依赖(省略了parent和dependencyManagement部分):


<dependencies>

<dependency>

<groupId>org.springframework.cloud            </groupId>

<artifactId>spring-cloud-config-server            </artifactId>

</dependency>

</dependencies>


@EnableConfigServer

  • 注解,开启Spring Cloud Config的服务端功能。
@EnableConfigServer

@SpringBootApplication

public             class Application{          



public static void main(String[] args){          

new SpringApplicationBuilder(Application.class).web(            true).run(args);          

            	}          



            }

application.yml

  • 中添加配置服务的基本信息以及Git仓库的相关信息,例如:
spring          

  application:

    name:

  cloud:

    config:

      server:

        git:

          uri:

server:

  port:             1201

到这里,使用一个通过Spring Cloud Config实现,并使用Git管理配置内容的分布式配置中心就已经完成了。我们可以将该应用先启动起来,确保没有错误产生,然后再尝试下面的内容。

如果我们的Git仓库需要权限访问,那么可以通过配置下面的两个属性来实现;
spring.cloud.config.server.git.username:访问Git仓库的用户名
spring.cloud.config.server.git.password:访问Git仓库的用户密码

完成了这些准备工作之后,我们就可以通过浏览器、POSTMAN或CURL等工具直接来访问到我们的配置内容了。访问配置信息的URL与配置文件的映射关系如下:

  • /{application}/{profile}[/{label}]
  • /{application}-{profile}.yml
  • /{label}/{application}-{profile}.yml
  • /{application}-{profile}.properties
  • /{label}/{application}-{profile}.properties

{application}-{profile}.properties对应的配置文件,其中{label}对应Git上不同的分支,默认为master。我们可以尝试构造不同的url来访问不同的配置内容 并获得如下返回:

{          

"name":             "config-client",          

"profiles": [          

"dev"

                ],          

"label":             "master",          

"version":             null,          

"state":             null,          

"propertySources": [          

                    {          

"name":             "config-client-dev.yml",          

"source": {          

"info.profile":             "dev"

                        }          

                    },          

                    {          

"name":             "config-client.yml",          

"source": {          

"info.profile":             "default"

                        }          

                    }          

                ]          

            }

我们可以看到该Json中返回了应用名:config-client,环境名:dev,分支名:master,以及default环境和dev环境的配置内容。

从现在开始,我这边会将近期研发的springcloud微服务云架构的搭建过程和精髓记录下来,帮助更多有兴趣研发spring cloud框架的朋友,希望可以帮助更多的好学者。大家来一起探讨spring cloud架构的搭建过程及如何运用于企业项目。