0

弹簧靴的新手。

我的问题是,“在运行时”spring boot 应用程序,如果 git url 关闭/不可用,那么我想要后备。

我的代码看起来像,

spring:
  application:
    name: myconfigservername
  profiles:
    include: git,native
  cloud:
    config:
      server:
        git:                                      
          default-label: branchname
          uri: giturlgoeshere                    ------------------------------------------------   (1)
          username: username
          password: password
        native:
          search-locations: local resource folder  ------------------------------------------------ (2)

因此,如果 (1)在启动应用程序时出现故障或不可用,那么我想从 (2) 位置选择数据。

我可以知道,有没有办法实现这一点。

有人可以在这里分享一些意见。

PS:我已经看过链接,但是那个 SO 链接不会回答我的问题。就我而言,启动应用程序本身时 GIT 可能已关闭。任何想法?

4

0 回答 0