Java,IDEA控制台打印类链接,参数,返回值

效果图

在这里插入图片描述

文件目录

在这里插入图片描述

DebugLogAop源码

import javassist.ClassPool;
import javassist.CtClass;
import javassist.CtMethod;
import javassist.NotFoundException;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.springframework.stereotype.Component;

import javax.servlet.http.HttpServletRequest;
import java.beans.BeanInfo;
import java.beans.IntrospectionException;
import java.beans.Introspector;
import java.beans.PropertyDescriptor;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.Map;

/**
 * @description  本地调试切面,正式环境默认不开启
 * @date  20/04/20 14:05
 * @author  wanghb
 * @edit  
 */
@Component
@Aspect
public class DebugLogAop {
    /**
     * 是否开启本地调试
     */
    private final boolean isOpne = true;
    /**
     * 实体标识
     */
    private final String entityMark = "entity";

    /**
     * @description  用于打印入参
     * @param  joinPoint
     * @return  void
     * @date  20/04/25 11:29
     * @author  wanghb
     * @edit
     */
    //execution表达式  配置自己项目的包路径
    @Before("execution(* com.example.demo..*(..)) ")
    public void advice(JoinPoint joinPoint) {
        if(isOpne && isPrint(joinPoint)){
            StackTraceElement stackTraceElement = getStackTraceElement(joinPoint);
            Object[] args = joinPoint.getArgs();
            StringBuffer sb = new StringBuffer();
            for (int i = 0; i < args.length; i++) {
                sb.append("第" + (i+1) + "个参数为:");
                Object arg = args[i];
                if(arg instanceof HttpServletRequest){
                    HttpServletRequest temp = (HttpServletRequest) arg;
                    sb.append( toMap( temp ));
                }else if(!(arg instanceof Class) && getString( arg ).indexOf( entityMark ) != -1){
                    sb.append( toMap( arg ));
                }else{
                    sb.append(arg);
                }
                sb.append("   ");
            }
            System.err.println(stackTraceElement + sb.toString());
        }
    }

    /**
     * @description  用于打印返回值
     * @param  joinPoint
     * @return
     * @date  20/04/25 11:29
     * @author  wanghb
     * @edit
     */
    //execution表达式  配置自己项目的包路径
    @Around("execution(* com.example.demo..*(..)) ")
    public Object around(ProceedingJoinPoint joinPoint) throws Throwable {
        Object result;
        Object[] args = joinPoint.getArgs();
        if(isOpne && isPrint(joinPoint)){
            StringBuffer sb = new StringBuffer("返回值为:");
            StackTraceElement stackTraceElement = getStackTraceElement(joinPoint);
            result = joinPoint.proceed(args);
            if(result instanceof HttpServletRequest){
                HttpServletRequest temp = (HttpServletRequest) result;
                sb.append( toMap( temp ));
            }else if(getString( result ).indexOf( entityMark ) != -1){
                sb.append( toMap( result ));
            }else{
                sb.append( ( getString( result ).equals( "" ) ? "void" : getString( result )));
            }
            System.err.println(stackTraceElement + sb.toString());
        }else{
             result = joinPoint.proceed(args);
        }
        return result;
    }

    /**
     * @description  判断方法是否包含不打印注解
     * @param  joinPoint
     * @return  boolean 判断结果
     * @date  20/04/26 11:11
     * @author  wanghb
     * @edit  .
     */
    public boolean isPrint(JoinPoint joinPoint){
        //方法名
        String methodName = joinPoint.getSignature().getName();
        Class<?> className = joinPoint.getTarget().getClass();
        Method[] methods = className.getMethods();
        for (int i = 0; i < methods.length; i++) {
            Method method = methods[i];
            if(method.getName().equals(  methodName)){
                return !method.isAnnotationPresent(NoPrintDebug.class);
            }
        }
        return false;
    }

    /**
     * @description  ProceedingJoinPoint 转 StackTraceElement
     * @param  joinPoint 待转类型
     * @return  stackTraceElement  转换结果
     * @date  20/04/24 19:09
     * @author  wanghb
     * @edit
     */
    public static StackTraceElement getStackTraceElement(JoinPoint joinPoint) {
        //完整类名
        String declaringClass = (joinPoint.getSignature().getDeclaringType() + "").replace( "class ","" );
        //类名
        String className = joinPoint.getSignature().getDeclaringType().getSimpleName();
        //方法名
        String methodName = joinPoint.getSignature().getName();
        //文件名
        String fileName = new StringBuilder(className).append( ".java" ).toString();

        ClassPool pool = ClassPool.getDefault();
        CtMethod methodX = null;
        try {
            CtClass cc = pool.get(declaringClass);
            methodX = cc.getDeclaredMethod(methodName);
        } catch (NotFoundException e) {
            e.printStackTrace();
        }
        int xlineNumber = methodX.getMethodInfo().getLineNumber(0);
        return new StackTraceElement(className, methodName, fileName, xlineNumber - 1);
    }

    /**
     * @description  Object转Map
     * @param  bean  待转类型
     * @@return  map  Map数据
     * @date  20/05/20 17:53
     * @author  wanghb
     * @edit  
     */
    public static Map<String, Object> toMap(Object bean){
        
        if(bean == null){
            return new HashMap<>();
        }
        Class type = bean.getClass();
        Map<String,Object> returnMap = new HashMap<>();
        BeanInfo beanInfo;
        try {
            beanInfo = Introspector.getBeanInfo(type);
            PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors();
            for (int i = 0; i < propertyDescriptors.length; i++) {
                PropertyDescriptor descriptor = propertyDescriptors[i];
                String propertyName = descriptor.getName();
                if (!propertyName.equals("class")) {
                    Method readMethod = descriptor.getReadMethod();
                    Object result = readMethod.invoke(bean, new Object[0]);
                    if (result != null) {
                        returnMap.put(propertyName, result);
                    } else {
                        returnMap.put(propertyName, "");
                    }
                }
            }
        }catch (IntrospectionException e){
        }catch (InvocationTargetException e){
        }catch (IllegalAccessException e){}

        return  returnMap;
    }
    
    /**
     * @description  Object转字符串
     * @param  value  待转字段
     * @@return  String  String字符串
     * @date  20/05/20 17:52
     * @author  wanghb
     * @edit  
     */
    public static String getString(Object value){
       return value == null ? "" : String.valueOf(value);
    }
}

NoPrintDebug源码

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

@Retention(RetentionPolicy.RUNTIME)//记录在.class文件中,并且在运行时保留"注释"
@Target({ElementType.METHOD})//指定注解只能放在"方法"上ElementType.FIELD,
/**
 * @description  用来标注类方法不需要执行debugLog打印  {@link DebugLogAop}
 * @date  20/04/25 12:09
 * @author  wanghb
 * @edit  .
 */
public @interface NoPrintDebug {
    public String value() default "";
}

在DebugLogAop的Around和Before配置需要扫描的项目包路径,即可使用

在这里插入图片描述
个人原创,若有不足,请多指正。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值