Объединяет ли spring-boot конфигурации, указанные в bootstrap .yml? - PullRequest
0 голосов
/ 29 мая 2020

У меня есть bootstrap.yml

spring:
  cloud:
    kubernetes:
      [...]
      config:
        paths:
          - config.yml
          - config-secrets.yml
          - another-config.yml

Будет ли Spring-Boot объединять config.yml с another-config.yml?

...