Spring系列---SpringBoot配置-profiles

2023-05-16

1.profiles的作用

在这里插入图片描述

2.使用profiles

---
#开发环境
server:
  port: 8080
spring:
  profiles: dev #profile别名

---
#上线环境
server:
  port: 8081
spring:
  profiles: pro #profile别名
---
#测试环境
server:
  port: 8082
spring:
  profiles: test #profile别名
---
spring:
  profiles:
    active: test #指定使用哪个profile的配置参数

在这里插入图片描述

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

Spring系列---SpringBoot配置-profiles 的相关文章

随机推荐