springBoot——多环境开发

不常用的application.properties版的

常用的:application.yml版

#多环境开发,设置启用环境
spring:
  profiles:
    active: test
---
#开发
spring:
  config:
    activate:
      on-profile: dev
server:
  port: 80
---
#生产
spring:
  config:
    activate:
      on-profile: test
server:
  port: 81
---
#测试
spring:
  config:
    activate:
      on-profile: pro
server:
  port: 82

 

posted @ 2023-07-20 09:50  会秃头的小白  阅读(6)  评论(0编辑  收藏  举报