美文网首页
SringCloud Config-配置Git仓库详解

SringCloud Config-配置Git仓库详解

作者: 爱上游戏开发 | 来源:发表于2019-08-06 09:49 被阅读0次

Git仓库配置详解

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

参考地址:Finchley.SR2文档

基础使用方式

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

通配符

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

模式匹配和多个存储库

模式匹配

server:
  port: 8080
spring:
  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: 8080
spring:
  cloud:
    config:
      server:
        git:
          uri: https://gitee.com/mmzs/microservice-spring-cloud-config-test      # 公用
          search-paths:
            - foo   # foo路径
            - bar   # bar路径

cloneOnStart属性的使用

server:
  port: 8080
spring:
  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: 8080
spring:
  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}'

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

相关文章

  • SringCloud Config-配置Git仓库详解

    Git仓库配置详解 使用git的几个好处:可以做版本审计:做了修改可以查看历史记录,查看是谁修改的等;用来做分布式...

  • Git基本使用命令

    Git配置 Git最小配置 配置全局账户,该账户对所有Git仓库都有效 配置局部账户,该账户对当前Git仓库有效 ...

  • Git远程配置

    Git远程查看  Git查看远程仓库 Git远程参数 Git配置远程仓库

  • Android Studio中Git的使用以及配置

    配置git 配置git仓库 在本地为项目创建git仓库为项目创建GIt仓库 在自己的GitHub中创建一个repo...

  • git命令

    Git命令大全git config配置 Git 的相关参数。Git 一共有3个配置文件: 仓库级的配置文件:在仓库...

  • Git 使用指南

    #1. 初次运行 Git 前的配置 #1.1 配置Git SSH 本地 Git 仓库和 GitHub仓库之间是通过...

  • Git 葵花宝典

    账户配置 配置全局账户,对所有 Git 仓库有效 配置局部账户,只对当前 Git 仓库有效 查看全局配置 查看局部...

  • GIt使用记录1:使用Git上传项目到Github

    1、安装git Git官网 具体操作省略 2、配置GitHub仓库 1、创建仓库 2、复制仓库地址 3、配置Git...

  • github国内加速代理访问

    注意:不支持 SSH Key 方式 git clone 下载. git clone 公用仓库 命令 详解:git ...

  • Git命令大全

    git config 配置 Git 的相关参数。 Git 一共有3个配置文件: 仓库级的配置文件:在仓库的 .gi...

网友评论

      本文标题:SringCloud Config-配置Git仓库详解

      本文链接:https://www.haomeiwen.com/subject/guabdctx.html