SpringBoot 多环境部署
多个配置文件
- application.yaml
- application-dev.yaml
- application-test.yaml
- application-prod.yaml
加载顺序
- 默认加载 application.yaml
- profiles.active ==dev 合配置
使用不同配置
- application.yaml 中 profiles.active:dev
- nohup java -Duser.timezone=Asia/Shanghai -jar -Dspring.profiles.active=prod app.jar > start1.log 2>&1 &
本文来自博客园,作者:vx_guanchaoguo0,转载请注明原文链接:https://www.cnblogs.com/guanchaoguo/p/17446133.html