Spring cloud config 配置项

spring:
  cloud:
    config:
      server:
        git:
          uri: #仓库地址
          search-paths: # 仓库下的子目录 
          default-label: # 设置默认分支
          force-pull: # 强制拉取
          username: 
          password: 
          clone-on-start: # 项目启动时开始clone

你可能感兴趣的:(Spring cloud config 配置项)