Profile是Spring對不同環境提供不同配置功能的支援,可以通過不同需求啟用指定環境配置
1、多Profile檔案定義形式
application-{profile}.properties
或者application-{profile}.yml
application-dev.properties
或application-dev.yml
application-test.properties
或application-test.yml
application-prod.properties
或application-prod.yml
2、多profile文件塊形式
---
server:
port: 8080
spring:
profiles: prod
---
server:
port: 8081
spring:
profiles: test
---
server:
port: 8082
spring:
profiles: dev
複製程式碼
啟用方式
1、在yml或者properties中通過配置啟用
spring:
profiles:
active: dev # 啟用開發環境
複製程式碼
2、命令列啟用
--spring.profiles.active=dev
複製程式碼
-
此命令式在
IDEA
中Program arguments
輸入框中設定 -
部署到本地啟用方式
java -jar demo-0.0.1-SNAPSHOT.jar --spring.profiles.active=prod 複製程式碼
3、JVM虛擬機器引數啟用
-
在
IDEA
中VM Options
中輸入框中設定-Dspring.profiles.active=dev 複製程式碼
-
部署到本地啟用方式
java -jar -Dspring.profiles.active=test demo-0.0.1-SNAPSHOT.jar 複製程式碼