log4j2 工具類

public class LoggerUtil {
    /**
     * 獲取最原始被調用的堆棧信息
     *
     * @return
     */
    public static StackTraceElement findCaller() {
        // 獲取堆棧信息
        StackTraceElement[] callStack = Thread.currentThread().getStackTrace();
        if (null == callStack) return null;

        // 最原始被調用的堆棧信息
        StackTraceElement caller = null;
        // 日誌類名稱
        String logClassName = LoggerUtil.class.getName();
        // 循環遍歷到日誌類標識
        boolean isEachLogClass = false;
        // 遍歷堆棧信息,獲取出最原始被調用的方法信息
        for (StackTraceElement s : callStack) {
            // 遍歷到日誌類
            if (logClassName.equals(s.getClassName())) {
                isEachLogClass = true;
            }
            // 下一個非日誌類的堆棧,就是最原始被調用的方法
            if (isEachLogClass) {
                if (!logClassName.equals(s.getClassName())) {
                    isEachLogClass = false;
                    caller = s;
                    break;
                }
            }
        }
        return caller;
    }

    /**
     * 自動匹配請求類名,生成logger對象,此處 logger name 值爲 [className].[methodName]()
     *
     * @return
     */
    private static Logger logger() {
        // 最原始被調用的堆棧對象
        StackTraceElement caller = findCaller();
        if (null == caller) return LoggerFactory.getLogger(LoggerUtil.class);
        Logger log = LoggerFactory.getLogger(caller.getClassName() + "." + caller.getMethodName());
        return log;
    }


    public static void trace(String msg) {
        trace(msg, null);
    }

    public static void trace(String msg, Throwable e) {
        logger().trace(msg, e);
    }

    public static void debug(String msg) {
        debug(msg, null);
    }

    public static void debug(String msg, Throwable e) {
        logger().debug(msg, e);
    }

    public static void info(String msg) {
        info(msg, null);
    }

    public static void info(String msg, Throwable e) {
        logger().info(msg, e);
    }

    public static void warn(String msg) {
        warn(msg, null);
    }

    public static void warn(String msg, Throwable e) {
        logger().warn(msg, e);
    }

    public static void error(String msg) {
        error(msg, null);
    }

    public static void error(String msg, Throwable e) {
        logger().error(msg, e);
    }
}
相關文章
相關標籤/搜索