这里所有属性文件都在github位置,这样我就可以使用uri路径读取,如果它在我的本地系统中,我将如何读取。可以请任何人指导吗?
server:
port: 8888
eureka:
instance:
hostname: configserver
client:
registerWithEureka: true
fetchRegistry: true
serviceUrl:
defaultZone: http://discovery:8761/eureka/
spring:
cloud:
config:
server:
git:
uri: https://github.com/****/******
答案 0 :(得分:1)
您需要在纯模式下使用spring cloud配置,例如
spring:
cloud:
config:
server:
bootstrap: true
native:
search-locations: file:///C:/ConfigData
有关详细信息,请参阅以下链接: http://cloud.spring.io/spring-cloud-config/spring-cloud-config.html#_file_system_backend