我正在使用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/
但是当我启动客户端时,它会抛出我在控制器中使用的未找到属性的异常。
答案 0 :(得分:1)
这一行有两个小时:
uri: hhttps://github.com/ragnar-lothbrok/fileUpload/
应该是:
uri: https://github.com/ragnar-lothbrok/fileUpload/