当前位置:   article > 正文

Spring系列---SpringBoot配置-profiles_springboot2.6设置profiles

springboot2.6设置profiles

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的配置参数
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/天景科技苑/article/detail/991970
推荐阅读
相关标签
  

闽ICP备14008679号