不停服務,動態載入properties資原始檔
阿新 • • 發佈:2021-12-10
系統執行過程中,我們用註解@Value("${****}")可以獲取資原始檔中的內
容,獲取的內容會被儲存在spring快取中,因此如果我們修改了資原始檔,要
想讀取到修改後的內容,那就必須重啟服務才能生效。那麼如果想修改資源文
件中的內容,又不想重啟服務,那麼只能讓服務動態載入資原始檔,每一次讀
取都是最新的內容,不去讀快取,解決方式如下:
利用工具讀取資原始檔
package com.***.**.utils; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.util.Properties; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.sinoway.cisp.controller.ApiController; /** * 獲取properties檔案內容工具類 */ public class PropertyUtil { private final static Logger logger = LoggerFactory.getLogger(ApiController.class); public static String getProperty(String key) { Properties props = new Properties(); InputStream in = null; String property = null; try { // 第一種,通過類載入器進行獲取properties檔案流 // in = PropertyUtil.class.getClassLoader().getResourceAsStream("Constant.properties"); // 第二種,通過絕對路徑進行獲取properties檔案流 String path = Thread.currentThread().getContextClassLoader().getResource("").getPath(); in = new FileInputStream(path + "/Constant.properties"); props.load(in); property = props.getProperty(key); } catch (FileNotFoundException e) { logger.error("Constant.properties檔案未找到"); } catch (IOException e) { logger.error("出現IOException"); } finally { try { if (null != in) { in.close(); } } catch (IOException e) { logger.error("檔案流關閉出現異常"); } } logger.info("載入資原始檔完成..........."); logger.info("檔案內容為:" + props); return property; } }
通過工具獲取資原始檔中的內容,是每次都會重新讀取的,以此來達到動態載入資原始檔的目的