aop+自定义注解实现打印参数日志-简易版

aop+自定义注解实现打印接口出入参数

1:自定义注解
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface MethodLog {

    int type() default 0; //0:打印全部参数, 以及返回结果 2:打印入参

}
  1. 运行时注解
  2. 作用域为方法上
  3. 注解参数: 0:打印入参+返回结果 1: 只打印入参
2: aop实现拦截注解打印参数
@Aspect
@Component
@Slf4j
public class MethodLogAspect {

    @Pointcut("@annotation(cn.ssk.model.annotation.MethodLog)")
    public void pointCut(){}


    @AfterReturning(value = "pointCut()",returning = "result")
    public void afterReturn(JoinPoint joinPoint,Object result){

        try {
            MethodSignature signature = (MethodSignature) joinPoint.getSignature();
            Method method = signature.getMethod();
            MethodLog annotation = method.getAnnotation(MethodLog.class);
            if (Objects.isNull(annotation)){
                return;
            }
            String methodName = method.getDeclaringClass().getSimpleName() + "." + method.getName();
            log.error("方法名:"+methodName);
            int type = annotation.type();
            Object[] args = joinPoint.getArgs();
            log.info("入参:");
            log.info(JSON.toJSONString(args));
            if (type == 0){
                log.info("返回结果:");
                log.info(JSON.toJSONString(result));
            }
        } catch (Exception e) {
            log.error("MethodLogAspect.afterReturn error",e);
        }
    }
}

  1. AfterReturning: 在方法return之前进入此aop, 可拿到该方法参数, 返回值等信息
  2. 通过JoinPoint 可拿到方法名, 注解, 参数
  3. 最后打印到log日志系统中
测试
  1. 注解作用于service
    aop+自定义注解实现打印参数日志-简易版_第1张图片
  2. postman参数
    aop+自定义注解实现打印参数日志-简易版_第2张图片
  3. 服务器打印参数
    aop+自定义注解实现打印参数日志-简易版_第3张图片

你可能感兴趣的:(java业务逻辑)