无法使用用户名和密码从git获取配置[Spring Cloud Config]

时间:2015-12-04 06:51:05

标签: spring git spring-cloud

我正在使用Spring Cloud Config,因此我在Config Server的bootstrap.yml中设置了下面提到的配置。


---
spring:
  application:
    name: sample-config
  cloud:
    config:
       server:
         git:
           uri: https://github.com/ragnar-lothbrok/fileUpload/
           username: xxx
           password: yyy

eureka:
  instance:
    nonSecurePort: ${server.port:8888}
  client:
    serviceUrl:
      defaultZone: http://${eureka.host:localhost}:${eureka.port:8761}/eureka/

但是当我启动客户端时,它会抛出我在控制器中使用的未找到属性的异常。

1 个答案:

答案 0 :(得分:1)

这一行有两个小时:

uri: hhttps://github.com/ragnar-lothbrok/fileUpload/

应该是:

uri: https://github.com/ragnar-lothbrok/fileUpload/