MDC源码分析及使用【转载】

2024-03-10 07:48
文章标签 分析 源码 使用 转载 mdc

本文主要是介绍MDC源码分析及使用【转载】,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

什么是MDC机制

MDC(Mapped Diagnostic Contexts)映射诊断上下文,主要用在做日志链路跟踪时,动态配置用户自定义的一些信息,比如requestId、sessionId等等。MDC使用的容器支持多线程操作,满足线程安全。

MDC的使用

  • pom.xml依赖
<!-- 日志log4j2 -->
<dependency><groupId>com.lmax</groupId><artifactId>disruptor</artifactId>
</dependency>
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>

此处日志具体实现采用的是log4j2,依赖slf4j-api 版本1.7.25

  • log4j2配置日志输出
<!-- 控制台 -->
<Console name="Console" target="SYSTEM_OUT"><PatternLayoutpattern="%d{yyyy-MM-dd HH:mm:ss.SSS} - %X{requestId} %-5p %t [%c:%L]-%m%n"/>
</Console>

在patternLayout中 %X{requestId} 显示我们定义的变量

  • MainLogAspect.java

package com.lucas.device.aop;import javax.servlet.http.HttpServletRequest;import com.phlico.common.framework.tool.unique.IdWorkerUtil;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.Signature;
import org.aspectj.lang.annotation.*;
import org.slf4j.MDC;
import org.springframework.stereotype.Component;
import org.springframework.web.context.request.RequestContextHolder;
import org.springframework.web.context.request.ServletRequestAttributes;import lombok.extern.slf4j.Slf4j;/*** <Description> 系统日志切面<br>** @author xubin<br>* @version 1.0<br>* @taskId <br>* @CreateDate 2019/4/12 <br>*/@Aspect
@Slf4j
@Component
public class MainLogAspect {/*** Description: 自定义切点<br>* * @author xubin <br>* @taskId <br>*/@Pointcut("@annotation(com.lucas.device.aop.Logc)")public void pointCut() {}/*** Description: 前置通知-记录请求信息<br>* * @author xubin <br>* @taskId <br>* @param joinPoint <br>*/@Before("pointCut()")public void doBeforeAdvice(JoinPoint joinPoint) {Signature signature = joinPoint.getSignature();ServletRequestAttributes sra = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();HttpServletRequest request = sra.getRequest();// 获取目标方法的参数信息Object[] obj = joinPoint.getArgs();// MDC容器增加requestIdMDC.put("requestId", IdWorkerUtil.getFlowIdWorkerInstance().nextId());log.info("[MainLogAspect]-request url:{}, class: {}, method: {}, param: {}", request.getRequestURI(), signature.getDeclaringTypeName(), signature.getName(), obj[0].toString());}/*** Description: 后置通知-记录返回信息<br>* * @author xubin <br>* @taskId <br>* @param joinPoint <br>* @param result <br>*/@AfterReturning(returning = "result", pointcut = "pointCut()")public void doAfterReturningAdvice(JoinPoint joinPoint, Object result) {Signature signature = joinPoint.getSignature();ServletRequestAttributes sra = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();HttpServletRequest request = sra.getRequest();log.info("[MainLogAspect]-response url:{}, class: {}, method: {}, param: {}", request.getRequestURI(), signature.getDeclaringTypeName(), signature.getName(), result.toString());// MDC容器移除requestIdMDC.remove("requestId");}/*** Description: 后置异常通知-记录返回出现异常<br>* * @author xubin <br>* @taskId <br>* @param joinPoint <br>* @param exception <br>*/@AfterThrowing(value = "pointCut()", throwing = "exception")public void doAfterThrowingAdvice(JoinPoint joinPoint, Throwable exception) {Signature signature = joinPoint.getSignature();ServletRequestAttributes sra = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();HttpServletRequest request = sra.getRequest();log.info("[MainLogAspect]-response exception url:{}, class: {}, method: {}", request.getRequestURI(), signature.getDeclaringTypeName(), signature.getName());// MDC容器移除requestIdMDC.remove("requestId");}
}

MainLogAspect.java是自定义切面,拦截@Logc的请求,输出请求的入参出参
在方法中合适的位置添加MDC.put和MDC.remove

  • 运行结果
    在这里插入图片描述
    可以看到,日志中同一线程内的用户操作都会打印出一个requestId,如果线程中没有requestId则会输出一个空字符串。红框内第三行是在当前线程中启用了子线程,此时子线程并未集成父线程中MDC容器,其中原因可以在下面的源码跟踪里找到。

MDC源码与原理

MDC的源码在slf4j-api包的org.slf4j路径下,源码:

package org.slf4j;import java.io.Closeable;
import java.util.Map;import org.slf4j.helpers.NOPMDCAdapter;
import org.slf4j.helpers.BasicMDCAdapter;
import org.slf4j.helpers.Util;
import org.slf4j.impl.StaticMDCBinder;
import org.slf4j.spi.MDCAdapter;public class MDC {static final String NULL_MDCA_URL = "http://www.slf4j.org/codes.html#null_MDCA";static final String NO_STATIC_MDC_BINDER_URL = "http://www.slf4j.org/codes.html#no_static_mdc_binder";static MDCAdapter mdcAdapter;/*** An adapter to remove the key when done.*/public static class MDCCloseable implements Closeable {private final String key;private MDCCloseable(String key) {this.key = key;}public void close() {MDC.remove(this.key);}}private MDC() {}/*** As of SLF4J version 1.7.14, StaticMDCBinder classes shipping in various bindings* come with a getSingleton() method. Previously only a public field called SINGLETON * was available.* * @return MDCAdapter* @throws NoClassDefFoundError in case no binding is available* @since 1.7.14*/private static MDCAdapter bwCompatibleGetMDCAdapterFromBinder() throws NoClassDefFoundError {try {return StaticMDCBinder.getSingleton().getMDCA();} catch (NoSuchMethodError nsme) {// binding is probably a version of SLF4J older than 1.7.14return StaticMDCBinder.SINGLETON.getMDCA();}}static {try {mdcAdapter = bwCompatibleGetMDCAdapterFromBinder();} catch (NoClassDefFoundError ncde) {mdcAdapter = new NOPMDCAdapter();String msg = ncde.getMessage();if (msg != null && msg.contains("StaticMDCBinder")) {Util.report("Failed to load class \"org.slf4j.impl.StaticMDCBinder\".");Util.report("Defaulting to no-operation MDCAdapter implementation.");Util.report("See " + NO_STATIC_MDC_BINDER_URL + " for further details.");} else {throw ncde;}} catch (Exception e) {// we should never get hereUtil.report("MDC binding unsuccessful.", e);}}/*** Put a diagnostic context value (the <code>val</code> parameter) as identified with the* <code>key</code> parameter into the current thread's diagnostic context map. The* <code>key</code> parameter cannot be null. The <code>val</code> parameter* can be null only if the underlying implementation supports it.* * <p>* This method delegates all work to the MDC of the underlying logging system.** @param key non-null key * @param val value to put in the map* * @throws IllegalArgumentException*           in case the "key" parameter is null*/public static void put(String key, String val) throws IllegalArgumentException {if (key == null) {throw new IllegalArgumentException("key parameter cannot be null");}if (mdcAdapter == null) {throw new IllegalStateException("MDCAdapter cannot be null. See also " + NULL_MDCA_URL);}mdcAdapter.put(key, val);}/*** Put a diagnostic context value (the <code>val</code> parameter) as identified with the* <code>key</code> parameter into the current thread's diagnostic context map. The* <code>key</code> parameter cannot be null. The <code>val</code> parameter* can be null only if the underlying implementation supports it.** <p>* This method delegates all work to the MDC of the underlying logging system.* <p>* This method return a <code>Closeable</code> object who can remove <code>key</code> when* <code>close</code> is called.** <p>* Useful with Java 7 for example :* <code>*   try(MDC.MDCCloseable closeable = MDC.putCloseable(key, value)) {*     ....*   }* </code>** @param key non-null key* @param val value to put in the map* @return a <code>Closeable</code> who can remove <code>key</code> when <code>close</code>* is called.** @throws IllegalArgumentException*           in case the "key" parameter is null*/public static MDCCloseable putCloseable(String key, String val) throws IllegalArgumentException {put(key, val);return new MDCCloseable(key);}/*** Get the diagnostic context identified by the <code>key</code> parameter. The* <code>key</code> parameter cannot be null.* * <p>* This method delegates all work to the MDC of the underlying logging system.** @param key  * @return the string value identified by the <code>key</code> parameter.* @throws IllegalArgumentException*           in case the "key" parameter is null*/public static String get(String key) throws IllegalArgumentException {if (key == null) {throw new IllegalArgumentException("key parameter cannot be null");}if (mdcAdapter == null) {throw new IllegalStateException("MDCAdapter cannot be null. See also " + NULL_MDCA_URL);}return mdcAdapter.get(key);}/*** Remove the diagnostic context identified by the <code>key</code> parameter using* the underlying system's MDC implementation. The <code>key</code> parameter* cannot be null. This method does nothing if there is no previous value* associated with <code>key</code>.** @param key  * @throws IllegalArgumentException*           in case the "key" parameter is null*/public static void remove(String key) throws IllegalArgumentException {if (key == null) {throw new IllegalArgumentException("key parameter cannot be null");}if (mdcAdapter == null) {throw new IllegalStateException("MDCAdapter cannot be null. See also " + NULL_MDCA_URL);}mdcAdapter.remove(key);}/*** Clear all entries in the MDC of the underlying implementation.*/public static void clear() {if (mdcAdapter == null) {throw new IllegalStateException("MDCAdapter cannot be null. See also " + NULL_MDCA_URL);}mdcAdapter.clear();}/*** Return a copy of the current thread's context map, with keys and values of* type String. Returned value may be null.* * @return A copy of the current thread's context map. May be null.* @since 1.5.1*/public static Map<String, String> getCopyOfContextMap() {if (mdcAdapter == null) {throw new IllegalStateException("MDCAdapter cannot be null. See also " + NULL_MDCA_URL);}return mdcAdapter.getCopyOfContextMap();}/*** Set the current thread's context map by first clearing any existing map and* then copying the map passed as parameter. The context map passed as* parameter must only contain keys and values of type String.* * @param contextMap*          must contain only keys and values of type String* @since 1.5.1*/public static void setContextMap(Map<String, String> contextMap) {if (mdcAdapter == null) {throw new IllegalStateException("MDCAdapter cannot be null. See also " + NULL_MDCA_URL);}mdcAdapter.setContextMap(contextMap);}/*** Returns the MDCAdapter instance currently in use.* * @return the MDcAdapter instance currently in use.* @since 1.4.2*/public static MDCAdapter getMDCAdapter() {return mdcAdapter;}}

可以看到MDC具体操作都是通过MDCAdapter.java接口来操作,静态块中初始化得到MDCAdapter实现类的实例。

  • MDCAdapter.java
public class NOPMDCAdapter implements MDCAdapter {public void clear() {}public String get(String key) {return null;}public void put(String key, String val) {}public void remove(String key) {}public Map<String, String> getCopyOfContextMap() {return null;}public void setContextMap(Map<String, String> contextMap) {// NOP}}

slf4j-api包中对MDCAdapter接口提供了两个实现类BasicMDCAdapter和NOPMDCAdapter。在对slf4j提供具体实现的依赖包时也会提供其他MDCAdapter的实现,比如logback中提供了LogbackMDCAdapter,log4j2中提供了Log4jMDCAdapter。上述例子中集成了log4j2,下面看下Log4jMDCAdapter(log4j-slf4j-impl.jar)的具体实现:

public class Log4jMDCAdapter implements MDCAdapter {@Overridepublic void put(final String key, final String val) {ThreadContext.put(key, val);}@Overridepublic String get(final String key) {return ThreadContext.get(key);}@Overridepublic void remove(final String key) {ThreadContext.remove(key);}@Overridepublic void clear() {ThreadContext.clearMap();}@Overridepublic Map<String, String> getCopyOfContextMap() {return ThreadContext.getContext();}@Override@SuppressWarnings("unchecked") // nothing we can do about this, restricted by SLF4J APIpublic void setContextMap(@SuppressWarnings("rawtypes") final Map map) {ThreadContext.clearMap();for (final Map.Entry<String, String> entry : ((Map<String, String>) map).entrySet()) {ThreadContext.put(entry.getKey(), entry.getValue());}}

Log4jMDCAdapter内容很简洁,对容器的存取使用了一个封装类ThreadContext。
ThreadContext源码片段:

...//省略代码若干
private static ThreadContextMap contextMap;
private static ThreadContextStack contextStack;
...//省略代码若干
static void init() {contextMap = null;final PropertiesUtil managerProps = PropertiesUtil.getProperties();disableAll = managerProps.getBooleanProperty(DISABLE_ALL);useStack = !(managerProps.getBooleanProperty(DISABLE_STACK) || disableAll);useMap = !(managerProps.getBooleanProperty(DISABLE_MAP) || disableAll);contextStack = new DefaultThreadContextStack(useStack);if (!useMap) {contextMap = new NoOpThreadContextMap();} else {contextMap = ThreadContextMapFactory.createThreadContextMap();}
}
...//省略代码若干
public static void put(final String key, final String value) {contextMap.put(key, value);}
public static String get(final String key) {return contextMap.get(key);}
...//省略代码若干

ThreadContext类中存取数据使用了另一个封装ThreadContextMap,而默认ThreadContextMap由ThreadContextMapFactory.createThreadContextMap初始化:

public static ThreadContextMap createThreadContextMap() {final PropertiesUtil managerProps = PropertiesUtil.getProperties();final String threadContextMapName = managerProps.getStringProperty(THREAD_CONTEXT_KEY);final ClassLoader cl = ProviderUtil.findClassLoader();ThreadContextMap result = null;if (threadContextMapName != null) {try {final Class<?> clazz = cl.loadClass(threadContextMapName);if (ThreadContextMap.class.isAssignableFrom(clazz)) {result = (ThreadContextMap) clazz.newInstance();}} catch (final ClassNotFoundException cnfe) {LOGGER.error("Unable to locate configured ThreadContextMap {}", threadContextMapName);} catch (final Exception ex) {LOGGER.error("Unable to create configured ThreadContextMap {}", threadContextMapName, ex);}}if (result == null && ProviderUtil.hasProviders()) {final String factoryClassName = LogManager.getFactory().getClass().getName();for (final Provider provider : ProviderUtil.getProviders()) {if (factoryClassName.equals(provider.getClassName())) {final Class<? extends ThreadContextMap> clazz = provider.loadThreadContextMap();if (clazz != null) {try {result = clazz.newInstance();break;} catch (final Exception e) {LOGGER.error("Unable to locate or load configured ThreadContextMap {}",provider.getThreadContextMap(), e);result = createDefaultThreadContextMap();}}}}}if (result == null) {result = createDefaultThreadContextMap();}return result;}private static ThreadContextMap createDefaultThreadContextMap() {if (Constants.ENABLE_THREADLOCALS) {if (PropertiesUtil.getProperties().getBooleanProperty(GC_FREE_THREAD_CONTEXT_KEY)) {return new GarbageFreeSortedArrayThreadContextMap();}return new CopyOnWriteSortedArrayThreadContextMap();}return new DefaultThreadContextMap(true);}

最后默认使用DefaultThreadContextMap。DefaultThreadContextMap片段:

public DefaultThreadContextMap(final boolean useMap) {this.useMap = useMap;this.localMap = createThreadLocalMap(useMap);}// LOG4J2-479: by default, use a plain ThreadLocal, only use InheritableThreadLocal if configured.// (This method is package protected for JUnit tests.)static ThreadLocal<Map<String, String>> createThreadLocalMap(final boolean isMapEnabled) {final PropertiesUtil managerProps = PropertiesUtil.getProperties();final boolean inheritable = managerProps.getBooleanProperty(INHERITABLE_MAP);if (inheritable) {return new InheritableThreadLocal<Map<String, String>>() {@Overrideprotected Map<String, String> childValue(final Map<String, String> parentValue) {return parentValue != null && isMapEnabled //? Collections.unmodifiableMap(new HashMap<>(parentValue)) //: null;}};}// if not inheritable, return plain ThreadLocal with null as initial valuereturn new ThreadLocal<>();}

到这里已经很清楚的看到容器默认使用的是ThreadLocal<Map<String, String>>存储。所以在新建子线程时候需要通过MDC.getCopyOfContextMap()和MDC.setContextMap()将父线程MDC容器内容传递到子线程中。当然源码中注释提到,可以通过配置使用InheritableThreadLocal,这样子线程可以直接继承父线程中MDC容器内容,但是因为性能问题,默认是不启用InheritableThreadLocal的。
子线程示例:
在这里插入图片描述
在这里插入图片描述
可以看到子线程也打印出了父线程中设置的requestId值。
跟踪上面贴出来的源码,启用InheritableThreadLocal需要我们在工程里增加配置文件log4j2.component.properties,log4j-api.jar在加载时会通过PropertiesUtil读取该文件内配置 的属性。
log4j2.component.properties

# 启用InheritableThreadLocal
isThreadContextMapInheritable = false

至此代码内无需在手动操作MDC.getCopyOfContextMap()和MDC.setContextMap()了,子线程会继承父线程内已经设置的MDC内容。

对于想要自定义ThreadContextMap的需要,也可以在配置文件log4j2.component.propertie中指定自己的实现类。
ThreadContextMapFactory.java

public static ThreadContextMap createThreadContextMap() {final PropertiesUtil managerProps = PropertiesUtil.getProperties();final String threadContextMapName = managerProps.getStringProperty(THREAD_CONTEXT_KEY);final ClassLoader cl = ProviderUtil.findClassLoader();ThreadContextMap result = null;// 在log4j2.component.propertie文件配置log4j2.threadContextMap = xx.xxx.xxx.yourThreadContextMap,会使用自定义ThreadContextMap实体if (threadContextMapName != null) {try {final Class<?> clazz = cl.loadClass(threadContextMapName);if (ThreadContextMap.class.isAssignableFrom(clazz)) {result = (ThreadContextMap) clazz.newInstance();}} catch (final ClassNotFoundException cnfe) {LOGGER.error("Unable to locate configured ThreadContextMap {}", threadContextMapName);} catch (final Exception ex) {LOGGER.error("Unable to create configured ThreadContextMap {}", threadContextMapName, ex);}}// 此处会检查log4j-core.jar内META-INF/log4j-provider.properties文件是否指定了ThreadContextMap实现类if (result == null && ProviderUtil.hasProviders()) {final String factoryClassName = LogManager.getFactory().getClass().getName();for (final Provider provider : ProviderUtil.getProviders()) {if (factoryClassName.equals(provider.getClassName())) {final Class<? extends ThreadContextMap> clazz = provider.loadThreadContextMap();if (clazz != null) {try {result = clazz.newInstance();break;} catch (final Exception e) {LOGGER.error("Unable to locate or load configured ThreadContextMap {}",provider.getThreadContextMap(), e);result = createDefaultThreadContextMap();}}}}}// 使用默认ThreadContextMap实体if (result == null) {result = createDefaultThreadContextMap();}return result;}

这篇关于MDC源码分析及使用【转载】的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/793545

相关文章

vue使用docxtemplater导出word

《vue使用docxtemplater导出word》docxtemplater是一种邮件合并工具,以编程方式使用并处理条件、循环,并且可以扩展以插入任何内容,下面我们来看看如何使用docxtempl... 目录docxtemplatervue使用docxtemplater导出word安装常用语法 封装导出方

Linux换行符的使用方法详解

《Linux换行符的使用方法详解》本文介绍了Linux中常用的换行符LF及其在文件中的表示,展示了如何使用sed命令替换换行符,并列举了与换行符处理相关的Linux命令,通过代码讲解的非常详细,需要的... 目录简介检测文件中的换行符使用 cat -A 查看换行符使用 od -c 检查字符换行符格式转换将

Go标准库常见错误分析和解决办法

《Go标准库常见错误分析和解决办法》Go语言的标准库为开发者提供了丰富且高效的工具,涵盖了从网络编程到文件操作等各个方面,然而,标准库虽好,使用不当却可能适得其反,正所谓工欲善其事,必先利其器,本文将... 目录1. 使用了错误的time.Duration2. time.After导致的内存泄漏3. jsO

使用Jackson进行JSON生成与解析的新手指南

《使用Jackson进行JSON生成与解析的新手指南》这篇文章主要为大家详细介绍了如何使用Jackson进行JSON生成与解析处理,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1. 核心依赖2. 基础用法2.1 对象转 jsON(序列化)2.2 JSON 转对象(反序列化)3.

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

Elasticsearch 在 Java 中的使用教程

《Elasticsearch在Java中的使用教程》Elasticsearch是一个分布式搜索和分析引擎,基于ApacheLucene构建,能够实现实时数据的存储、搜索、和分析,它广泛应用于全文... 目录1. Elasticsearch 简介2. 环境准备2.1 安装 Elasticsearch2.2 J

使用C#代码在PDF文档中添加、删除和替换图片

《使用C#代码在PDF文档中添加、删除和替换图片》在当今数字化文档处理场景中,动态操作PDF文档中的图像已成为企业级应用开发的核心需求之一,本文将介绍如何在.NET平台使用C#代码在PDF文档中添加、... 目录引言用C#添加图片到PDF文档用C#删除PDF文档中的图片用C#替换PDF文档中的图片引言在当

Java中List的contains()方法的使用小结

《Java中List的contains()方法的使用小结》List的contains()方法用于检查列表中是否包含指定的元素,借助equals()方法进行判断,下面就来介绍Java中List的c... 目录详细展开1. 方法签名2. 工作原理3. 使用示例4. 注意事项总结结论:List 的 contain

C#使用SQLite进行大数据量高效处理的代码示例

《C#使用SQLite进行大数据量高效处理的代码示例》在软件开发中,高效处理大数据量是一个常见且具有挑战性的任务,SQLite因其零配置、嵌入式、跨平台的特性,成为许多开发者的首选数据库,本文将深入探... 目录前言准备工作数据实体核心技术批量插入:从乌龟到猎豹的蜕变分页查询:加载百万数据异步处理:拒绝界面

Android中Dialog的使用详解

《Android中Dialog的使用详解》Dialog(对话框)是Android中常用的UI组件,用于临时显示重要信息或获取用户输入,本文给大家介绍Android中Dialog的使用,感兴趣的朋友一起... 目录android中Dialog的使用详解1. 基本Dialog类型1.1 AlertDialog(