博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
@Before 参数
阅读量:6291 次
发布时间:2019-06-22

本文共 424 字,大约阅读时间需要 1 分钟。

hot3.png

@Before("execution(public int lzj.com.spring.aop.ArithmeticCalculator.*(int, int))")

    public void beforMethod(JoinPoint point){
        String methodName = point.getSignature().getName();
        List<Object> args = Arrays.asList(point.getArgs());
        System.out.println("调用前连接点方法为:" + methodName + ",参数为:" + args);
    }

 

调用前连接点方法为:add,参数为:[3, 2] add->result:5 调用前连接点方法为:div,参数为:[4, 2] div->result:2

转载于:https://my.oschina.net/u/2351011/blog/3027942

你可能感兴趣的文章