springboot配置profile多环境支持

在主配置文件编写的时候,文件名可以是application-{profile}.properties/yml,默认使用application.properties的配置.如果想指定使用其他配置文件中的数据,可以使用如下几种方式:

  1. 方法1
# 在application.properties/yml中写如下配置信息
# 表示使用application-prod.properties/yml配置文件
spring.profiles.active=prod
  1. 方法2: 多文档块方式
# yml文件支持多文档块方式
server:
  port: 8081
spring:
  profiles:
    # 表示使用下面的profiles: prod配置
    active: prod
---
server:
  port: 8083
spring:
  profiles: dev

---
server:
  port: 8084
spring:
  profiles: prod
  1. 方法3
# 该方法会覆盖其他方式
Run/Debug configurations中的Program arguments中配置: 
--spring.profiles.active=dev
  1. 方法4: 在target目录下执行一下命令时指定使用的profiles
java -jar spring-boot-01-helloworld-quick-0.0.1-SNAPSHOT.jar --spring.profiles.active=dev

  1. 方法5: 使用虚拟机参数
# 该方法会覆盖其他方式
Run/Debug configurations中的VM options配置: 
-Dspring.profiles.active=dev

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值