SpringBoot配置Profile多環境支援

Genee發表於2018-11-07

Profile是Spring對不同環境提供不同配置功能的支援,可以通過不同需求啟用指定環境配置

1、多Profile檔案定義形式
  • application-{profile}.properties或者application-{profile}.yml
    • application-dev.propertiesapplication-dev.yml
    • application-test.propertiesapplication-test.yml
    • application-prod.propertiesapplication-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
複製程式碼
  • 此命令式在IDEAProgram arguments輸入框中設定

  • 部署到本地啟用方式

    java -jar demo-0.0.1-SNAPSHOT.jar --spring.profiles.active=prod
    複製程式碼
3、JVM虛擬機器引數啟用
  • IDEAVM Options中輸入框中設定

    -Dspring.profiles.active=dev
    複製程式碼
  • 部署到本地啟用方式

    java -jar -Dspring.profiles.active=test demo-0.0.1-SNAPSHOT.jar
    複製程式碼

相關文章