Package com.foxinmy.weixin4j.util
Class Weixin4jConfigUtil
- java.lang.Object
-
- com.foxinmy.weixin4j.util.Weixin4jConfigUtil
-
public class Weixin4jConfigUtil extends Object
公众号配置信息 class路径下weixin4j.properties文件- Since:
- JDK 1.6
- Author:
- jinyu(foxinmy@gmail.com)
-
-
Field Summary
Fields Modifier and Type Field Description static ClassLoader
CLASSLOADER
-
Constructor Summary
Constructors Constructor Description Weixin4jConfigUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static String
getClassPathValue(String key)
判断属性是否存在[classpath:]如果存在则拼接项目路径后返回 一般用于文件的绝对路径获取static String
getClassPathValue(String key, String defaultValue)
static Level
getJdkLoggerLevel()
static String
getValue(String key)
获取weixin4j.properties文件中的key值static String
getValue(String key, String defaultValue)
key不存在时则返回传入的默认值static WeixinAccount
getWeixinAccount()
获取微信账号信息static String
replaceClassPathValue(String value)
-
-
-
Field Detail
-
CLASSLOADER
public static final ClassLoader CLASSLOADER
-
-
Method Detail
-
getValue
public static String getValue(String key)
获取weixin4j.properties文件中的key值- Parameters:
key
-- Returns:
-
getValue
public static String getValue(String key, String defaultValue)
key不存在时则返回传入的默认值- Parameters:
key
-defaultValue
-- Returns:
-
getClassPathValue
public static String getClassPathValue(String key)
判断属性是否存在[classpath:]如果存在则拼接项目路径后返回 一般用于文件的绝对路径获取- Parameters:
key
-- Returns:
-
getClassPathValue
public static String getClassPathValue(String key, String defaultValue)
- Parameters:
key
-defaultValue
-- Returns:
-
getWeixinAccount
public static WeixinAccount getWeixinAccount()
获取微信账号信息- Returns:
- 微信账号信息
-
getJdkLoggerLevel
public static Level getJdkLoggerLevel()
-
-