我正在尝试从本地文件夹中加载配置。看起来它可以到达定义的文件夹。但是,我不确定接下来会发生什么
spring:
cloud:
config:
server:
git:
uri: file:../../company-config
basedir: target/config
searchPaths: '{application}/'
repos:
international-branch:
pattern: inter*/*
uri: file:../../inter-branch-config
searchPaths: '{application}/'
我收到以下错误消息。我不明白为什么它仍然尝试从远程git repo克隆而只使用此指定uri中的文件?配置uri:file的目的不是为了避免从远程克隆吗?
2019-05-01 15:29:22.480 WARN 17312 --- [io-8888-exec-10] PatternMatchingJGitEnvironmentRepository : Could not fetch remote for development remote: ssh://git@xxx.com:7999/cir/xxxxx-config.git
2019-05-01 15:29:22.483 DEBUG 17312 --- [io-8888-exec-10] PatternMatchingJGitEnvironmentRepository : Stacktrace for: Could not fetch remote for development remote: ssh://git@xxxxx.com:7999/cir/xxx-config.git
它为什么无法获取它,因为在同一终端中可以从此存储库中提取。
请告知。谢谢