博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
跟我学Spring Cloud(Finchley版)-20-Spring Cloud Config-Git仓库配置详解
阅读量:6845 次
发布时间:2019-06-26

本文共 2191 字,大约阅读时间需要 7 分钟。

  hot3.png

在 一节中,已实现使用Git仓库作为Config Server的后端存储,本节详细探讨如何配置Git仓库。

一、占位符支持

Config Server的占位符支持{application}、{profile}和{label}。

示例:

server:  port: 8080spring:  application:    name: microservice-config-server  cloud:    config:      server:        git:          uri: https://git.oschina.net/itmuch/{application}          username:          password:

使用这种方式,即可轻松支持一个应用对应一个Git仓库。同理,也可支持一个profile对应一个Git仓库。

二、模式匹配

模式匹配指的是带有通配符的{application}/{profile}名称的列表。如果{application}/{profile}不匹配任何模式,它将会使用spring.cloud.config.server.git.uri 定义的URI。

spring:  cloud:    config:      server:        git:          uri: https://github.com/spring-cloud-samples/config-repo          repos:            simple: https://github.com/simple/config-repo            special:              pattern: special*/dev*,*special*/dev*              uri: https://github.com/special/config-repo            local:              pattern: local*              uri: file:/home/configsvc/config-repo

该例中,对于simple仓库,它只匹配所有配置文件中名为simple的应用程序,它的模式等同于simple/* 。local仓库则匹配所有配置文件中以local开头的所有应用程序的名称。

三、搜索目录

很多场景下,我们可能把配置文件放在了Git仓库子目录中,此时可以使用search-paths指定,search-path同样支持占位符。

spring:  cloud:    config:      server:        git:          uri: http://git.oschina.net/itmuch/spring-cloud-config-repo          search-paths: foo,bar*

这样,Config Server就会在Git仓库根目录、foo子目录、以及所有以bar开始的子目录中查找配置文件。

四、启动时加载配置文件

默认情况下,在配置被首次请求时,Config Server才会clone Git仓库。我们也可让Config Server在启动时就clone Git仓库,例如。

spring:  cloud:    config:      server:        git:          uri: https://github.com/spring-cloud-samples/config-repo          repos:            team-a:                pattern:  microservice-*                clone-on-start: true                uri: http://git.oschina.net/itmuch/spring-cloud-config-repo

将属性spring.cloud.config.server.git.repos.*.clone-on-start 设为true,即可让Config Server启动时clone指定Git仓库。

当然,也可使用spring.cloud.config.server.git.clone-on-start = true 进行全局配置。

配置clone-on-start = true,可帮助Config Server启动时快速识别错误的配置源(例如无效的Git仓库)。

小技巧

将以下包的日志级别设为DEBUG,即可打印Config Server请求Git仓库的细节。我们可借助日志,更好地理解Config Server的Git仓库配置,同时,也便于我们快速定位问题。

logging:  level:    org.springframework.cloud: DEBUG    org.springframework.boot: DEBUG

本文首发

干货分享

全是干货!

转载于:https://my.oschina.net/eacdy/blog/3008667

你可能感兴趣的文章
集合框架_DAY17
查看>>
【ichartjs】用ichartjs替代Excel做直方图
查看>>
unix调试工具:lsof
查看>>
国内各IE内核浏览器所调用的IE版本--转了
查看>>
Vector3.Set的正确使用
查看>>
[CareerCup] 12.6 Test an ATM 测试一个自动取款机
查看>>
完全背包问题
查看>>
Git 经常使用命令合集
查看>>
Eclipse中怎么设置Add cast to Clazz 快捷键
查看>>
SandcastleBuilder-生成帮助文档的时候报错...
查看>>
Android隐藏标题栏和状态栏
查看>>
InfluxDB1.2.4部署(centos6.8)
查看>>
关于协同过滤技术
查看>>
简述 OAuth 2.0 的运作流程
查看>>
OpenJTAG与Jlink/J-link的区别
查看>>
聚焦能力开放 咪咕让中国移动全球合作伙伴大会智趣无限
查看>>
阿里NASA新知 量子通信保障信息更安全
查看>>
阿里推出国内首个锂电池服务器!
查看>>
让父母轻松享受智能生活 天猫精灵新品全测评
查看>>
当时刷大标语的智能养猪现在怎么样了!阿里云ET农业大脑告诉你……
查看>>