如何在 Spring Boot Yaml 中激活 Profile
Posted
技术标签:
【中文标题】如何在 Spring Boot Yaml 中激活 Profile【英文标题】:How to activate Profile in Spring Boot Yaml 【发布时间】:2021-10-15 21:51:05 【问题描述】:我的 Spring boot(2.4.5) 应用程序的以下应用程序 yaml 有两个配置文件。
弹簧: 个人资料:开发人员
弹簧: 个人资料:产品
现在,当我传递参数 -Dspring.profiles.active=dev 时,它实际上并没有拾取配置文件。最近是否对个人资料进行了任何更改。
当我激活配置文件时,如下所示
弹簧: 简介: 活跃:开发
但根据环境配置文件可以不同。我不想硬编码配置文件
【问题讨论】:
【参考方案1】:您应该在 application.yml 中使用以下内容:
spring
config:
activate:
on-profile: dev
---
spring
config:
activate:
on-profile: prod
【讨论】:
以上是关于如何在 Spring Boot Yaml 中激活 Profile的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 spring boot + .yaml 创建配置文件?
如何使用 spring boot + .yaml 创建配置文件?