|
@@ -41,6 +41,17 @@ public class PropertiesUtil {
|
|
private PropertiesUtil() {
|
|
private PropertiesUtil() {
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 设置属性
|
|
|
|
+ *
|
|
|
|
+ * @author WANGWEI
|
|
|
|
+ * @param key
|
|
|
|
+ * @param value
|
|
|
|
+ */
|
|
|
|
+ public static void setProperty(String key, String value) {
|
|
|
|
+ PROPS.setProperty(key, value);
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 加载配置文件
|
|
* 加载配置文件
|
|
*
|
|
*
|