我是spring 配置服务器的新手。我想从我的应用程序中实现spring 配置服务器,我的配置服务器从git 存储库中获取属性详细信息,但如果我的git 服务器无法响应,我如何从本地机器读取属性?
注意:我只想从本地机器读取属性,以防我的 git 服务器无法响应。
我是spring 配置服务器的新手。我想从我的应用程序中实现spring 配置服务器,我的配置服务器从git 存储库中获取属性详细信息,但如果我的git 服务器无法响应,我如何从本地机器读取属性?
注意:我只想从本地机器读取属性,以防我的 git 服务器无法响应。
您可以通过存储库使用以下配置来执行此操作。
spring:
cloud:
config:
server:
git:
uri: https://github.com/your-repository/config-repo
repos:
local:
pattern: local*
uri: file:/home/your-directory/config-repo
这是有关它的文档config-server-multiple-repositories。