springboot指定配置文件啟動


spring-boot:run啟動時,指定spring.profiles.active

例如有如下幾個配置文件

application.properties中配有

spring.profiles.active=dev 

application-dev.properties 中配有

server.port=8081 

application-test.properties 中配有

server.port=8082 

Maven啟動test配置指定Profile通過-P,如

`mvn spring-boot:run -Ptest`,但這是Maven的Profile。 

如果要指定spring-boot的spring.profiles.active,則必須使用

`mvn spring-boot:run -Drun.profiles=test`啟動test配置 

如果使用命令行直接運行jar文件,則使用

`java -jar -Dspring.profiles.active=test demo-0.0.1-SNAPSHOT.jar`啟動test配置 

如果使用開發工具,運行Application.java文件啟動,則增加參數

`--spring.profiles.active=test`啟動test配置 

dev是默認的配置

例如:application-dev.properties文件名dev 和啟動spring.profiles.active=dev的dev相對應

轉載於:https://my.oschina.net/u/3730149/blog/3078407

 

 
 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM