SpringBoot启动多环境
用maven插件spring-boot启动时,可以用mvn spring-boot:run -e -Dspring-boot.run.profiles=test001
spring-boot:run
启动时,指定spring.profiles.active
Maven启动指定Profile通过-P,如mvn spring-boot:run -Ptest
,但这是Maven的Profile。
如果要指定spring-boot的spring.profiles.active
,则必须使用mvn spring-boot:run -e -Dspring-boot.run.profiles=test
如果使用命令行直接运行jar文件,则使用java -jar -Dspring.profiles.active=test demo-0.0.1-SNAPSHOT.jar
如果使用开发工具,运行Application.java文件启动,则增加参数--spring.profiles.active=test
java -jar demo-0.0.1-SNAPSHOT.jar --spring.profiles.active=test
» 本文链接:https://blog.apires.cn/archives/758.html
» 转载请注明来源:Java地带
» 《SpringBoot启动多环境》
» 本文章为Java地带整理创作,欢迎转载!转载请注明本文地址,谢谢!
» 部分内容收集整理自网络,如有侵权请联系我删除!
» 订阅本站:https://blog.apires.cn/feed/