1、简述

本文选用Git作为配置仓库,新建两个环境的配置文件夹,dev 和 test,文件夹中分别存放 Config Client 端的配置文件,目录结构如下:

├ ─ ─ dev

└ ─ ─ config-client-dev.properties

├ ─ ─ test

└ ─ ─ config-client-test.properties

2、Config Server 搭建

2.1、Maven依赖

Config Server 是一个基于Spring Boot的web应用,我们首先需要做的就是在pom中引入Spring Cloud Config Server的依赖。

<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>

2.2、Config Server配置

# 配置中心名称
spring.application.name=lkf-config-git
# 配置中心端口号
server.port=1000 # 配置git仓库地址
spring.cloud.config.server.git.uri=https://github.com/liukaifeng/lkf-cloud
# 配置文件查找路径
spring.cloud.config.server.git.search-paths=config-repo/dev
# 配置中心api前缀
spring.cloud.config.server.prefix=lkf

2.3、启用Config Server

最后就是启用Config Server,只需要加上@EnableConfigServer即可

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

配置后完成后启动应用,Config Server就开始工作了,访问地址:
http://localhost:1000/lkf/config-client/dev 看到了刚刚配置文件中的配置信息,到此配置中心服务端搭建完成。

3、Config Client 使用

3.1、Maven依赖

Config Client 是一个基于Spring Boot的web应用,我们首先需要做的就是在pom中引入Spring Cloud Config Client的依赖。

<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>

3.2、Config Client配置

我们需要做一些配置使Config Client知道Config Server的地址,以及应用自身配置的信息,如:应用名字,环境,配置的版本等信息,以下是配置:

#配置环境
spring.cloud.config.profile=dev
#配置中心地址
spring.cloud.config.uri=http://localhost:1000/lkf
#配置文件名称
spring.cloud.config.name=config-client

配置完成后,启动应用,Config Client就会自动从Config Server获取配置,并注册到注册中心,访问注册中心地址:http://localhost:8888/


至此,Config Client 已成功从配置中心拉取并解析成功配置并注册到了注册中心。另外在应用启动日志中也可以看到拉取配置信息的日志:

Fetching config from server at : http://localhost:1000/lkf
2018-11-03 22:48:47.951 [main] DEBUG org.springframework.web.client.RestTemplate - Created GET request for "http://localhost:1000/lkf/config-client/dev"
2018-11-03 22:48:48.015 [main] DEBUG org.springframework.web.client.RestTemplate - Setting request Accept header to [application/json, application/*+json]
2018-11-03 22:48:49.130 [main] DEBUG org.springframework.web.client.RestTemplate - GET request for "http://localhost:1000/lkf/config-client/dev" resulted in 200 (null)
2018-11-03 22:48:49.132 [main] DEBUG org.springframework.web.client.RestTemplate - Reading [class org.springframework.cloud.config.environment.Environment] as "application/json;charset=UTF-8" using [org.springframework.http.converter.json.MappingJackson2HttpMessageConverter@273842a6]
2018-11-03 22:48:49.150 [main] INFO o.s.c.c.client.ConfigServicePropertySourceLocator - Located environment: name=config-client, profiles=[dev], label=null, version=0eaed01201a6f2c5fd2b0fd3b637d8384f3c79b9, state=null
2018-11-03 22:48:49.150 [main] DEBUG o.s.c.c.client.ConfigServicePropertySourceLocator - Environment config-client has 1 property sources with 13 properties.
2018-11-03 22:48:49.150 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: CompositePropertySource {name='configService', propertySources=[MapPropertySource@466319810 {name='configClient', properties={config.client.version=0eaed01201a6f2c5fd2b0fd3b637d8384f3c79b9}}, MapPropertySource@219812012 {name='https://github.com/liukaifeng/lkf-cloud/config-repo/dev/config-client-dev.properties', properties={server.port=8001, spring.application.name=lkf-eureka-client, eureka.client.serviceUrl.defaultZone=${EUREKA_SERVICE_URL:http://localhost:8888}/lb/eureka/, management.endpoint.conditions.enabled=true, eureka.instance.prefer-ip-address=true, eureka.instance.instanceId=${spring.application.name}@${spring.cloud.client.ip-address}@${server.port}, management.endpoints.web.exposure.include=*, management.endpoint.health.show-details=always, management.endpoint.logfile.enabled=true, management.endpoint.auditevents.enabled=true, management.endpoint.loggers.enabled=true, info.project.name=@project.name@, info.project.version=@project.version@}}]}
2018-11-03 22:48:49.150 [main] DEBUG o.s.core.env.PropertySourcesPropertyResolver - Could not find key 'logging.config:' in any property source

Spring Cloud Config(二):基于Git搭建配置中心的更多相关文章

  1. Spring Cloud Config、Apollo、Nacos配置中心选型及对比

    Spring Cloud Config.Apollo.Nacos配置中心选型及对比 1.Nacos 1.1 Nacos主要提供以下四大功能 2.Spring Cloud Config 3.Apollo ...

  2. Spring Cloud Config 使用Bus的动态配置中心

    server端配置 POM文件 <dependency> <groupId>org.springframework.boot</groupId> <artif ...

  3. Spring cloud config client获取不到配置中心的配置

    Spring cloud client在配置的时候,配置文件要用 bootstrap.properties 贴几个说明的链接.但是觉得说的依然不够详细,得空详查. 链接1 链接2 链接3 原文地址:h ...

  4. Spring Cloud Config(三):基于JDBC搭建配置中心

    1.简介 本文主要内容是基于jdbc搭建配置中心,使应用从配置中心读取配置信息并成功注册到注册中心,关于配置信息表结构仅供参考,大家可以根据具体需要进行扩展. 2.Config Server 搭建 2 ...

  5. 9.Spring Cloud Config统一管理微服务配置

    Spring Cloud Config统一管理微服务配置 9.1. 为什么要统一管理微服务配置 9.2. Spring Cloud Config简介 Spring Cloud Config为分布式系统 ...

  6. 一起来学Spring Cloud | 第七章:分布式配置中心(Spring Cloud Config)

    上一章节,我们讲解了服务网关zuul,本章节我们从git和本地两种存储配置信息的方式来讲解springcloud的分布式配置中心-Spring Cloud Config. 一.Spring Cloud ...

  7. Spring Cloud学习笔记【九】配置中心Spring Cloud Config

    Spring Cloud Config 是 Spring Cloud 团队创建的一个全新项目,用来为分布式系统中的基础设施和微服务应用提供集中化的外部配置支持,它分为服务端与客户端两个部分.其中服务端 ...

  8. spring boot 2.0.3+spring cloud (Finchley)6、配置中心Spring Cloud Config

    https://www.cnblogs.com/cralor/p/9239976.html Spring Cloud Config 是用来为分布式系统中的基础设施和微服务应用提供集中化的外部配置支持, ...

  9. Spring Cloud系列(六):配置中心

    在使用Spring Boot的时候,我们往往会在application.properties配置文件中写一些值,供应用使用,这样做的好处是可以在代码中引用这些值,当这些值需要作出修改的时候,可以直接修 ...

随机推荐

  1. (三)Spring框架之事务管理

    一.编程式事务管理 Spring事务管理器的接口是org.springframework.transaction.PlatformTransactionManager,事务管理器接口PlatformT ...

  2. 修改ubuntu设备名

    修改ubuntu设备名   执行如下命令:   sudo sed -i 's/当前设备名/新设备名/' /etc/hostname sudo sed -i 's/当前设备名/新设备名/' /etc/h ...

  3. 【php socket通讯】php实现http服务

    http服务是建立在tcp服务之上的,它是tcp/ip协议的应用,前面我们已经实现了tcp服务,并且使用三种不同的方式连接tcp服务 php中连接tcp服务的三种方式 既然http也是tcp应用层的一 ...

  4. 微信小程序 上传图片并等比列压缩到指定大小

    微信小程序官方API中  wx.chooseImage() 是可以进行图片压缩的,可惜的是不能压缩到指定大小. 实际开发中需求可能是压缩到指定大小: 原生js可以使用canvas来压缩,但由于微信小程 ...

  5. ios编程时常见问题总结

    (1)在UIViewController里面使用了timer,会使得controller被retain,因此在viewdisapper时应将timer置为nil,否则controller的deallo ...

  6. MSPBSL_Scripter编译

    The BSL Scripter is a PC application that is available for Windows, Linux and Mac OS X. It is a user ...

  7. (转载)小白的linux设备驱动归纳总结(一):内核的相关基础概念---学习总结

    1. 学习总结 小白的博客讲的linux内核驱动这一块的东西比较基础,因此想通过学习他的博客,搭配着看书的方式来学习linux内核和驱动.我会依次更新在学习小白的博客的过程的感悟和体会. 2.1 内核 ...

  8. 1.使用Vue.js实现品牌案例添加功能

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  9. 如何实现数组和 List 之间的转换?(未完成)

    如何实现数组和 List 之间的转换?(未完成)

  10. C++语法备忘

    记录一些C++的语法方便日后查看. 1.C++初始化语法 C++中新增加了两种初始化语法,其中大括号初始化器需要C++11以上的实现,使用时可以加等号,也可以不加,而且大括号中可以不包含任何东西,这种 ...