博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
aspectj 获取 连接点 方法!
阅读量:4920 次
发布时间:2019-06-11

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

public static Method getMethod(JoinPoint joinPoint) {        Method method = null;        String name = joinPoint.getSignature().getName();        try {        // 这才是 正统!            MethodSignature signature = (MethodSignature) joinPoint.getSignature();            Class[] types = signature.getParameterTypes();            joinPoint.getSignature();            method = joinPoint.getTarget().                    getClass().getMethod(name,types);        } catch (NoSuchMethodException e) {            e.printStackTrace();        }        return method;    }

 多个连接点--

@Before("@annotation(cloud.cjy.travel.module.common.annotation.CjyAspect) || within(@cloud.cjy.travel.module.common.annotation.CjyAspect *)")

转载于:https://www.cnblogs.com/whm-blog/p/11098807.html

你可能感兴趣的文章
论”犯贱“ --生活小记
查看>>
Python标准库:内置函数ascii(object)
查看>>
MySQL查询优化(转)
查看>>
586. Customer Placing the Largest Number of Orders
查看>>
依存分析 Dependency Parsing
查看>>
Django框架——forms.ModelForm使用
查看>>
SSH小应用
查看>>
Jsp
查看>>
实验6:Problem H: 字符串类(II)
查看>>
静态区间第k大 树套树解法
查看>>
虚方法与抽象方法有什么区别?
查看>>
JQuery操作DOM
查看>>
Educational Codeforces Round 5 E. Sum of Remainders (思维题)
查看>>
Python3 从零单排5_内置函数
查看>>
用cas来实现php的单点登陆
查看>>
react开启一个项目 webpack版本出错
查看>>
JQUEY FX源码解析
查看>>
SpringMVC上传压缩文件,解压文件,并检测上传文件中是否有index.html
查看>>
[GRYZ2015]Graph
查看>>
ajax联动
查看>>