我需要一些帮助来使用另一个 .yml 文件来补充应用程序中的原始文件。然后我有一个由我(dev)填写的文件,但是我们的客户应该插入一些配置(作为数据库信息)。
应用程序中的一个(application.yml)具有一般配置,路径 C:\Users\Public\ datasource.yml上的另一个具有:
spring:
datasource:
platform: postgres
driverClassName: org.postgresql.Driver
url: jdbc:postgresql://localhost:5432/mydb
username: foo
password: bar
有没有人这样做过?