前面說到沒有設定application.properties文件,現在我在main/resources資料夾下新建一個application.properties文件,並且寫上如下的配置
然後,啟動項目,
#好了,透過上面的啟動結果截圖,看到服務在連接埠”9090“啟動了。那麼如果在該目錄下在配置一個application.yml檔案吶,
#啟動結果如下,
##可以看到依然在連接埠」9090「啟動服務。為此得出結論:在相同資料夾下如果有application.properties和application.yml兩個文件,那麼application.properties文件會覆蓋application.yml文件,生效的是application.properties文件。 什麼是yml檔案yml是由YAML (YAML Aint Markup Language)所寫的檔案格式,是一種很直觀的資料序列化方式。很簡單就是一種新的檔案格式,和XML、prperties檔案類似。 二、application.properties/.yml檔案可以在其他路徑嗎看到這個標題的小夥伴肯定會說,難道application.properties可以在其他路徑,沒錯,猜對了。 application.properties/.yml我們是放在了main/resources資料夾下,在專案運行的時候該資料夾下的檔案會被拷貝到classes資料夾下,所以該路徑又叫做classpath。 在springboot的源碼中搜尋”application.properties“,搜到ConfigFileApplicationListener這樣一個類,在該類的註釋上有下面這段話,* {@link EnvironmentPostProcessor} that configures the context environment by loading * properties from well known file locations. By default properties will be loaded from * 'application.properties' and/or 'application.yml' files in the following locations: * <ul> * <li>file:./config/</li> * <li>file:./config/{@literal *}/</li> * <li>file:./</li> * <li>classpath:config/</li> * <li>classpath:</li> * </ul>
// Note the order is from least to most specific (last one wins) private static final String DEFAULT_SEARCH_LOCATIONS = "classpath:/,classpath:/config/,file:./,file:./config/*/,file:./config/";
看下現在使用的是哪個端口, 使用的是9092,也說resouces/config的優先權大於resources,即,classpath:/config/>classpath:/。下面再看下file:/ 在專案的根路徑下新建了application.properties文件,起server.port為9093,下面看服務使用的哪個端口, 服務使用的是9093,優先權為:file:/>classpath:/config/>classpath:/。現在我在專案的路徑下增加config/my/路徑,增加application.properties文件, #測試結果如下,
服務在連接埠」9094「啟動,說明優先權為:file:./config/*/>file:./>classpath:/>classpath:/config/,最後驗證的點為file :/config,這個我想無須驗證了肯定優先權是最高的,為此優先權順序由高到低為:file:./config/ > file:./config/*/ > file:./ > classpath:/ > classpath:/config/,通俗點說就是:專案根路徑下的config>專案根路徑下的config/*/>專案根路徑>classpath:/config>classpath:/
以上是springboot預設的載入路徑有哪幾種的詳細內容。更多資訊請關注PHP中文網其他相關文章!