Конфигурационный сервер Spring настроил IllegalStateException: вам нужно настроить URI для репозитория git - PullRequest
0 голосов
/ 29 ноября 2018

Я пытался настроить сервер Spring Config.Даже если я даю URL-адрес bitbucket в файле bootstrap.yml приложения сервера конфигурации, я все равно получаю исключения.

Ниже приведен пример из моего bootstrap.yml (config-server)

spring.application.name: ${SPRING_APPLICATION_NAME:config-server}
sprint.cloud.config.server.git.searchPaths: '{application}'
sprint.cloud.config.server.git.uri: https://XX@bitbucketdc-dg.xyz.net/scm/abc/config-store.git
spring.cloud.config.server.git.username: XX
spring.cloud.config.server.git.password:



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$$282f5fb1]: 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.BeanCreationException: Error creating bean with name 'environmentRepository' defined in class path resource [org/springframework/cloud/config/server/config/EnvironmentRepositoryConfiguration$GitRepositoryConfiguration.class]: Invocation of init method failed; nested exception is java.lang.IllegalStateException: You need to configure a uri for the git repository

1 Ответ

0 голосов
/ 29 ноября 2018

Удалить:

sprint.cloud.config.server.git.searchPaths: '{application}'

Поскольку это используется для локальной среды.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...