/** 获取 int 类型的属性值(可指定默认值) */
 public static int getInt(String key, int defaultValue) {
   return PropsUtil.getNumber(configProps, key, defaultValue);
 }
 /** 获取 int 类型的属性值 */
 public static int getInt(String key) {
   return PropsUtil.getNumber(configProps, key);
 }