小知识:SpringCloudConfigServer从git获取配置信息报错:.c.s.e.MultipleJGitEnvironmentRepository : Error occured clo
Posted Michael_Chong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小知识:SpringCloudConfigServer从git获取配置信息报错:.c.s.e.MultipleJGitEnvironmentRepository : Error occured clo相关的知识,希望对你有一定的参考价值。
因为SpringCloudConfig相关的配置信息在程序启动时进行配置信息查询,这个动作发生在application.yml加载之前。
因此需要把springcloudconfig相关的配置信息配置到bootstrap.yml中。
例:bootstrap.yml中配置如下信息:
spring:
cloud:
config:
server:
git:
uri: https://github.com/xxx/spring-cloud-config-repository.git
username: xxx
password: yyyy
default-label: master
search-paths: config
skip-ssl-validation: true
以上是关于小知识:SpringCloudConfigServer从git获取配置信息报错:.c.s.e.MultipleJGitEnvironmentRepository : Error occured clo的主要内容,如果未能解决你的问题,请参考以下文章