spring boot 多环境(dev、test、prod)配置文件---命令行切换

2020-12-13 16:12

阅读:451

标签:app   file   rop   test   文件名   生产   pre   files   str   

  • properties配置格式
在Spring boot 中多环境配置文件名需要满足application-{profile}.properties的格式,其中{profile}对于你的环境标识,比如:

 

技术图片

在application.properties 中配置 spring.profiles.active=dev #默认开发环境

 

在启动jar包时,使用命令行切换

  • java -jar xxx.jar --spring.profiles.active=test // 测试环境配置文件
    java -jar xxx.jar --spring.profiles.active=prod// 生产环境配置文件

     

spring boot 多环境(dev、test、prod)配置文件---命令行切换

标签:app   file   rop   test   文件名   生产   pre   files   str   

原文地址:https://www.cnblogs.com/shar-wang/p/11618658.html


评论


亲,登录后才可以留言!