1.yml文件(旧)
说明:旧的写法。
XML
#应用环境
spring:
profiles:
active: dev
---
#设置环境
#生产环境
spring:
profiles: pro
server:
port: 81
---
#开发环境
spirng:
profiles: dev
server:
port: 81
---
#测试环境
spring:
profiles: test
server:
port: 82
2.yml文件(新)
说明:以下是最新配置。
XML
#应用环境
spring:
profiles:
active: test
---
#设置环境
#生产环境
spring:
config:
activate:
on-profile: pro
server:
port: 81
---
#开发环境
spring:
config:
activate:
on-profile: dev
server:
port: 81
---
#测试环境
spring:
config:
activate:
on-profile: test
server:
port: 82
3.文件区别
说明:可以创建不同的文件进行区分开发环境、测试环境、生产环境。在application.yml主文件配置。
XML
spring:
profiles:
active: test