我的application.yaml配置文件包含少量配置文件:
server:
address: 0.0.0.0
port: 9090
db:
url: 'jdbc:postgresql://localhost:5432/the_db'
driver: 'org.postgresql.Driver'
username: 'postgres'
password: ''
---
spring:
profiles: devArtem
db:
url: 'jdbc:postgresql://localhost:5432/my_db'
---
spring:
profiles: prod_1
db:
password: 'first_pass'
---
spring:
profiles: prod_2
db:
password: 'second_pass'
我想在构建jar文件之前删除其他配置文件。例如,我不想让prod_1的密码访问prod_2平台。
对于prod_1,它必须是这样的:
server:
address: 0.0.0.0
port: 9090
db:
url: 'jdbc:postgresql://localhost:5432/the_db'
driver: 'org.postgresql.Driver'
username: 'postgres'
password: 'first_pass'
或者这个:
server:
address: 0.0.0.0
port: 9090
db:
url: 'jdbc:postgresql://localhost:5432/the_db'
driver: 'org.postgresql.Driver'
username: 'postgres'
password: ''
---
spring:
profiles: prod_1
db:
password: 'first_pass'
答案 0 :(得分:1)
您可以使用多个应用程序 - {profile} .yml,并为每个团队提供正确的文件。
例如:
application-devArtem.yml --->团队devArtem
application-prod_1.yml --->团队prod_1
application-prod_2.yml --->团队prod_2