springboot--多環境

在Spring Boot中多環境配置文件名須要知足application-{profile}.properties的格式,其中{profile}對應你的環境標識,好比:java

  • application-dev.properties:開發環境
  • application-prod.properties:生產環境

想要使用對應的環境,只須要在application.properties中使用spring.profiles.active屬性來設置,值對應上面提到的{profile},這裏就是指dev、prod這2個。
固然你也能夠用命令行啓動的時候帶上參數:spring

java -jar xxx.jar --spring.profiles.active=dev
相關文章
相關標籤/搜索