博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringCloud(十二):SringCloud Config-配置Git仓库详解
阅读量:6291 次
发布时间:2019-06-22

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

Git仓库配置详解

  • 使用git的几个好处:
    • 可以做版本审计:做了修改可以查看历史记录,查看是谁修改的等;
    • 用来做分布式等都比较方便,像用本地文件存储,就不能高可用,除非再弄一个nfs或者其他的分布式的文件系统
    • 官方也建议使用git

参考地址:

基础使用方式

server:  port: 8080spring:  cloud:    config:      server:        git:          uri: https://gitee.com/mmzs/microservice-spring-cloud-config-test复制代码

通配符

server:  port: 8080spring:  cloud:    config:      server:        git:		  # {application}表示根据应用名称寻找配置信息          uri: https://gitee.com/mmzs/{application}复制代码

模式匹配和多个存储库

模式匹配

server:  port: 8080spring:  cloud:    config:      server:        git:		  # 公用;即当simple和special都匹配不到时,就是用该仓库下的配置信息          uri: https://gitee.com/mmzs/microservice-spring-cloud-config-test                  simple: https://gitee.com/mmzs/simple            special:			  # 请求时使用:localhost:8080/mmzs/special-dev.properties			  # 请求时使用:localhost:8080/mmzs/special-test.properties              pattern: special*/dev*,special*/test*              uri: https://gitee.com/mmzs/special复制代码

搜索路径

server:  port: 8080spring:  cloud:    config:      server:        git:          uri: https://gitee.com/mmzs/microservice-spring-cloud-config-test      # 公用          search-paths:            - foo   # foo路径            - bar   # bar路径复制代码

cloneOnStart属性的使用

server:  port: 8080spring:  cloud:    config:      server:        git:          uri: https://gitee.com/mmzs/microservice-spring-cloud-config-test      # 公用		  # 默认是false;即启动时不会连git仓库,把需要的资源都下载下来;而是首次请求的时候才下载          clone-on-start: true            repos:            simple: https://gitee.com/mmzs/simple            special:              pattern: special*/dev*,special*/test*              uri: https://gitee.com/mmzs/special              cloneOnStart: false   # 默认是false复制代码

账号密码配置

server:  port: 8080spring:  cloud:    config:      server:        git:          uri: https://gitee.com/mmzs/microservice-spring-cloud-config-test          username: xxx          password: xxx复制代码

占位符在Git搜索路径中的使用

Spring Cloud Config Server还支持带有占位符的搜索路径,用于{application}和{profile}(以及{label},如果需要),如以下示例所示:

spring:  cloud:    config:      server:        git:          uri: https://gitee.com/mmzs/microservice-spring-cloud-config-test          searchPaths: '{application}'复制代码

上面的配置导致在存储库中搜索与目录(以及顶层)同名的文件,通配符在带占位符的搜索路径中也有效(搜索中包含任何匹配的目录)。

转载于:https://juejin.im/post/5cfdcecf51882563ed6ad9eb

你可能感兴趣的文章
Sphinx 配置文件说明
查看>>
数据结构实践——顺序表应用
查看>>
python2.7 之centos7 安装 pip, Scrapy
查看>>
机智云开源框架初始化顺序
查看>>
Spark修炼之道(进阶篇)——Spark入门到精通:第五节 Spark编程模型(二)
查看>>
一线架构师实践指南:云时代下双活零切换的七大关键点
查看>>
ART世界探险(19) - 优化编译器的编译流程
查看>>
玩转Edas应用部署
查看>>
music-音符与常用记号
查看>>
sql操作命令
查看>>
zip 数据压缩
查看>>
Python爬虫学习系列教程
查看>>
【数据库优化专题】MySQL视图优化(二)
查看>>
【转载】每个程序员都应该学习使用Python或Ruby
查看>>
PHP高级编程之守护进程,实现优雅重启
查看>>
PHP字符编码转换类3
查看>>
rsync同步服务配置手记
查看>>
http缓存知识
查看>>
Go 时间交并集小工具
查看>>
iOS 多线程总结
查看>>