ConfigUtil读取配置文件工具类

时间:2023-03-09 19:42:09
ConfigUtil读取配置文件工具类

ConfigUtil

package com.sso.util;

import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Properties; public class ConfigUtil { public ConfigUtil() {
} private static Properties props = new Properties(); static {
try {
props.load(Thread.currentThread().getContextClassLoader().getResourceAsStream("application.properties"));
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
} public static String getValue(String key) {
return props.getProperty(key);
} public static void updateProperties(String key, String value) {
props.setProperty(key, value);
}
}