1. 程式人生 > >SpringBoot專案讀取properties檔案

SpringBoot專案讀取properties檔案

ResourceBundle.getBundle("", Locale.getDefault()).getString(request_type)SpringBoot可以通過這種方式讀取到專案中的properties檔案,其中“”填寫檔名。檔案放在src/main/resource目錄下面。注意,這裡會載入eclipse工作空間下所有專案的resource目錄下的properties檔案,如果有另外一個專案也使用了相同了properties檔名,那麼你讀取的properties檔案可能就不是你想要的properties檔案了。