1. 程式人生 > >springboot多個application檔案

springboot多個application檔案

        生產部署的配置和測試的配置往往是不一樣的,如果都是在一個application.properties檔案中修改,不但容易出現遺漏,而且反反覆覆很是麻煩。如果採用springboot的profiles來區分生產和測試,那麼可以減少許多不必要的工作,需要修改的配置往往就是一兩句

1、建立生產和測試檔案如下:

2、application.properties配置如下:

 

注:1、spring.profiles.active是用來啟用springboot多檔案配置的;

            在springboot中多環境配置檔名需要滿足application-xxx.properties

的命名規則;

            其中的xxx正是我們spring.profiles.active需要指定的配置檔名

       2、想使用哪個配置,修改application.properties主配置檔案的spring.profiles.active標籤

       3、載入多個配置檔案spring.profiles.active = xxx,xxx

             

例如:spring.profiles.active = test,database