一、YML配置文件
1、单文件配置多环境以“---”分割
spring:
profiles:
active: pro
---
# 设置生产环境
spring:
profiles: pro
server:
port: 80
---
# 设置开发环境
spring:
profiles: dev
server:
port: 81
---
# 设置测试环境
spring:
profiles: test
server:
port: 82
切换环境再测试
2、多文件配置多环境
开发环境配置文件:application-dev.yml