spring cloud config git配置的坑

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring cloud config git配置的坑相关的知识,希望对你有一定的参考价值。

不多说了,直接上列子
pom.xml的

    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-config-server</artifactId>
    </dependency>

yml配置设置
spring:
application:
name: xxx
cloud:
config:
server:
git:
uri: git地址
searchPaths: 子目录
username: 账号
password: 密码

在启动类上增加
@EnableConfigServer

最重要的是别加profiles 这个属性
加上这个profiles 就会受影响 报错
You need to configure a uri for the git repository

org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘org.springframework.boot.actuate.autoconfigure.EndpointAutoConfiguration‘: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.boot.actuate.autoconfigure.EndpointAutoConfiguration$$EnhancerBySpringCGLIB$$a51a7dda]: Constructor threw exception; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name ‘configServerHealthIndicator‘ defined in class path resource [org/springframework/cloud/config/server/config/EnvironmentRepositoryConfiguration.class]: Unsatisfied dependency expressed through method ‘configServerHealthIndicator‘ parameter 0; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name ‘org.springframework.cloud.config.server.config.CompositeConfiguration‘: Unsatisfied dependency expressed through method ‘setEnvironmentRepos‘ parameter 0; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘defaultEnvironmentRepository‘ defined in class path resource [org/springframework/cloud/config/server/config/EnvironmentRepositoryConfiguration$DefaultRepositoryConfiguration.class]: Invocation of init method failed; nested exception is java.lang.IllegalStateException: You need to configure a uri for the git repository

以上是关于spring cloud config git配置的坑的主要内容,如果未能解决你的问题,请参考以下文章

spring cloud config git配置的坑

spring cloud config git库文件搜索顺序

Spring Cloud Config采用Git存储时两种常用的配置策略

Spring Boot + Spring Cloud Config - 如何从 Git 外部配置添加更多配置文件

Externalise - spring cloud config server 多个 git repo 配置

spring cloud 入门系列七:基于Git存储的分布式配置中心--Spring Cloud Config