当前位置: 首页 > 知识库问答 >
问题:

JavaMDC Logger-MDC.put过多的方法()

司徒宇
2023-03-14

关于MDC和Java的小问题。

起初,我有非常简单的方法,一些方法有很多参数(我缩短了参数列表以保持简短,但请想象很多参数)

 public String invokeMethodForPerson(int age, String name, boolean isCool, long distanceRun, double weight) {
        LOGGER.info("begin to invoke method invokeMethodForPerson");
        return methodForPerson(age, name, isCool, distanceRun, weight);
    }

    public String invokeMethodForCar(String model, boolean isElectric, long price, int numberOfDoors) {
        LOGGER.info("begin to invoke method invokeMethodForCar");
        return methodForCar(model, isElectric, price, numberOfDoors);
    }

    public String invokeMethodForFlower(String name, String color) {
        LOGGER.info("begin to invoke method invokeMethodForFlower");
        return methodForFlower(name, color);
    }

(这个问题不是关于如何重构长长的参数列表)

然后,我想利用MDC。MDC非常有用,它允许在日志聚合工具等中进行更好的搜索。将它们作为第一层,而不是在记录器本身中,是非常有用的。

因此,为了利用MDC,代码从简单变成了现在类似这样的东西,这是我尝试的。

public String invokeMethodForPerson(int age, String name, boolean isCool, long distanceRun, double weight) {
        MDC.put("age", age);
        MDC.put("name", name);
        MDC.put("isCool", isCool);
        MDC.put("distanceRun", distanceRun);
        MDC.put("weight", weight);
        LOGGER.info("begin to invoke method invokeMethodForPerson");
        return methodForPerson(age, name, isCool, distanceRun, weight);
    }

    public String invokeMethodForCar(String model, boolean isElectric, long price, int numberOfDoors) {
        MDC.put("model", model);
        MDC.put("isElectric", isElectric);
        MDC.put("price", price);
        MDC.put("numberOfDoors", numberOfDoors);
        LOGGER.info("begin to invoke method invokeMethodForCar");
        return methodForCar(model, isElectric, price, numberOfDoors);
    }

    public String invokeMethodForFlower(String name, String color) {
        MDC.put("name", name);
        MDC.put("color", color);
        LOGGER.info("begin to invoke method invokeMethodForFlower");
        return methodForFlower(name, color);
    }

问题:现在看代码,实际上有更多的<code>MDC行。put()实际业务逻辑代码

问:对于许多参数来说,除了添加大量的< code>MDC.put()代码之外,是否有更干净的方法来利用MDC,如果可能的话,请使用AOP/aspects/advice/pointcut?

谢谢你

共有2个答案

乔望
2023-03-14

我会尝试利用MDC.setContextMap()getCopyOfContextMap

这样,您可以一次提供整个参数图。

只是要小心,因为< code>setContextMap会清除之前放在那里的任何现有值。

仲霍英
2023-03-14

您可以创建自己的实用程序来使用 MDC。

public class MDCUtils {
    private MDCUtils() {

    }

    public static void putAll(Object... params) {
        if ((params.length & 1) != 0) {
            throw new IllegalArgumentException("Length is odd");
        }

        for (int i = 0; i < params.length; i += 2) {
            String key = Objects.requireNonNull((String) params[i]); //The key parameter cannot be null
            Object value = params[i + 1]; //The val parameter can be null only if the underlying implementation supports it.
            MDC.put(key, value);
        }
    }

    public static void putAll(Map<String, Object> map) {
        map.forEach(MDC::put);
    }

    public static <K extends String, V> void put(K k1, V v1, K k2, V v2) {
        putAll(k1, v1, k2, v2);
    }

    public static <K extends String, V> void put(K k1, V v1, K k2, V v2, K k3, V v3) {
        putAll(k1, v1, k2, v2, k3, v3);
    }
}

用法示例:

    public String invokeMethodForPerson(int age, String name, boolean isCool, long distanceRun, double weight) {
        MDCUtils.putAll("age",age, "name", name,"isCool", isCool,"distanceRun", distanceRun,"weight", weight);

        LOGGER.info("begin to invoke method invokeMethodForPerson");
        return methodForPerson(age, name, isCool, distanceRun, weight);
    }

更严格的示例:

    public String invokeMethodForFlower(String name, String color) {
        MDCUtils.put("name", name, "color", color);
        
        LOGGER.info("begin to invoke method invokeMethodForFlower");
        return methodForFlower(name, color);
    }

使用 Map.of 的示例,但它不支持可为空的值。

    public String invokeMethodForPerson(int age, String name, boolean isCool, long distanceRun, double weight) {
        MDCUtils.putAll(Map.of( "age",age,"name", name,"isCool", isCool,"distanceRun", distanceRun,"weight", weight));

        LOGGER.info("begin to invoke method invokeMethodForPerson");
        return methodForPerson(age, name, isCool, distanceRun, weight);
    }

更新:
通过AspectJ的AOP解决方案
为方法和参数目标添加注释@LogMDC。这个想法是html" target="_blank">添加将所有方法参数或特定参数放入MDC的功能

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target({ElementType.METHOD, ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
public @interface LogMDC {
}

添加方面,该方面将捕获用< code>@LogMDC批注标记的方法,并执行将参数存储到< code>MDC的操作。

import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.reflect.MethodSignature;

import java.lang.annotation.Annotation;
import java.lang.reflect.Method;

@Aspect
public class MDCAspect {
    
    //match the method marked @LogMDC annotation
    @Before("@annotation(LogMDC) && execution(* *(..))")
    public void beforeMethodAnnotation(JoinPoint joinPoint) {
        String[] argNames = ((MethodSignature) joinPoint.getSignature()).getParameterNames();
        Object[] values = joinPoint.getArgs();
        if (argNames.length != 0) {
            for (int i = 0; i < argNames.length; i++) {
                MDC.put(argNames[i], values[i]);
            }
        }
    }

    //match the method which has any parameter with @LogMDC annotation
    @Before("execution(* *(.., @LogMDC (*), ..))")
    public void beforeParamsAnnotation(JoinPoint joinPoint) {
        MethodSignature methodSignature = (MethodSignature) joinPoint.getSignature();
        String[] argNames = methodSignature.getParameterNames();
        Object[] values = joinPoint.getArgs();
        Method method = methodSignature.getMethod();
        Annotation[][] parameterAnnotations = method.getParameterAnnotations();

        for (int i = 0; i < parameterAnnotations.length; i++) {
            Annotation[] annotations = parameterAnnotations[i];
            for (Annotation annotation : annotations) {
                if (annotation.annotationType() == LogMDC.class) {
                    MDC.put(argNames[i], values[i]);
                }
            }
        }
    }
}

使用示例。将方法的所有参数放入MDC

    @LogMDC
    public String invokeMethodForPerson(int age, String name, boolean isCool, long distanceRun, double weight) {
        LOGGER.info("begin to invoke method invokeMethodForPerson");
        return methodForPerson(age, name, isCool, distanceRun, weight);
    }

使用示例。只将方法的特定参数放入MDC,用注释标记。

    public String invokeMethodForPerson(@LogMDC int age, @LogMDC String name, boolean isCool, long distanceRun, @LogMDC double weight) {
        LOGGER.info("begin to invoke method invokeMethodForPerson");
        return methodForPerson(age, name, isCool, distanceRun, weight);
    }

请注意,AspecJ对性能有一点影响< br >使用AspectJ的性能损失< br >使用aop的性能影响< br >性能:使用AspectJ记录所有方法的运行时间

根据您的用例,您应该决定使用简单的util方法调用还是aop解决方案。

 类似资料:
  • 我在使用Java方法时遇到了麻烦。这段代码应该有三种方法。方法1)输入员工人数。方法2)输入每个员工缺勤天数。方法3)计算缺勤天数的平均值。然后,在Main中,应该打印员工人数、缺勤天数和平均缺勤天数。显然,我不明白方法是如何工作的,因为当我运行代码时,用户在提供员工人数、缺勤天数和平均缺勤天数之前,会被询问4倍的员工人数和2倍的员工缺勤天数。如何更改代码,以便用户只需输入一次信息?

  • 本文向大家介绍Laravel列出所有通过多种方法过滤的注册路由,包括了Laravel列出所有通过多种方法过滤的注册路由的使用技巧和注意事项,需要的朋友参考一下 示例 这将包括所有同时接受GET和POST方法的路由。

  • 本文向大家介绍JS对大量数据进行多重过滤的方法,包括了JS对大量数据进行多重过滤的方法的使用技巧和注意事项,需要的朋友参考一下 前言 主要的需求是前端通过 Ajax 从后端取得了大量的数据,需要根据一些条件过滤,首先过滤的方法是这样的: 现在迷糊了,觉得这样处理数据不对,但是又不知道该怎么处理。 发现问题 问题就在过滤上,这样固然可以实现多重过滤(先调用 filterA() 再调用 filterB

  • 问题内容: 我正在运行Linux Web服务器,该服务器运行Python代码以通过HTTP从第三方API捕获实时数据。数据被放入MySQL数据库。我需要对许多URL进行大量查询,并且需要快速执行(更快=更好)。目前,我使用urllib3作为我的HTTP库。最好的方法是什么?我应该生成多个线程(如果有的话,有多少个?),并让每个查询都查询不同的URL?我很想听听您对此的想法- 谢谢! 问题答案: 如

  • 本文向大家介绍php执行多个存储过程的方法【基于thinkPHP】,包括了php执行多个存储过程的方法【基于thinkPHP】的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了php执行多个存储过程的方法。分享给大家供大家参考,具体如下: 从以前的使用原生代码来看,只需要将结果集关闭即可,即 使用mysqli方式,修改DbMysqli.class.php,将query函数改为: 下面就可以调

  • 本文向大家介绍mysql存储过程之返回多个值的方法示例,包括了mysql存储过程之返回多个值的方法示例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了mysql存储过程之返回多个值的方法。分享给大家供大家参考,具体如下: mysql存储函数只返回一个值。要开发返回多个值的存储过程,需要使用带有INOUT或OUT参数的存储过程。咱们先来看一个orders表它的结构: 然后嘞,咱们来看一个存储