多环境开发
- yaml版——多环境全都写在单个配置文件内
spring:
profiles:
active: pro #设置为应用生产环境
---
#生产环境
spring:
config:
activate:
on-profile: pro
server:
port: 80
---
#开发环境
spring:
config:
activate:
on-profile: dev
server:
port: 81
---
#测试环境
spring:
config:
activate:
on-profile: test
server:
port: 82
- yaml版——多环境分别