多环境配置和配置文件位置
多环境配置
多环境配置
在一个完整的项目中,可能会经历测试,运维等操作,而这些操作可能需要不同的端口,所有这时多环境配置就出来了
yaml可以实现多文档模块
用---来分割文档
server:
port: 8081 默认
spring:
profiles:
active: dev #启用哪一个模块
---
server:
port: 8082
spring:
profiles: dev 运维模块
---
server:
port: 8083
spring:
profiles: test 测试模块
配置文件位置
配置文件位置有四种位置
优先级从上往下
1.file/config/application.yaml
2.file/application.yaml
3.classPath:/config/application.yaml
4.classPath:application.yaml