文章目录

  • ​​1.只要在主propertites 或者yml添加​​
  • ​​2.spring.profile.include:无条件地添加活动置文件(可以添加多个,以逗号分隔)​​

Springboot-测试-生产环境_spring

Springboot-测试-生产环境_spring_02

1.只要在主propertites 或者yml添加

spring.profiles.action=名字

Springboot-测试-生产环境_spring_03

2.spring.profile.include:无条件地添加活动置文件(可以添加多个,以逗号分隔)

例如:你可以在application-dev.yml加入如下配置:

spring:
profiles:
include: test

会激活application-test.yml的配置。