码迷,mamicode.com
首页 > 其他好文 > 详细

切面反射获取方法

时间:2019-07-11 00:26:25      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:nat   class   cep   null   except   row   get   pes   illegal   

Signature sig = pjp.getSignature();
MethodSignature msig = null;
if (!(sig instanceof MethodSignature)) {
throw new IllegalArgumentException("该注解只能用于方法");
}
msig = (MethodSignature) sig;
Object target = pjp.getTarget();
Method currentMethod = target.getClass().getMethod(msig.getName(), msig.getParameterTypes());

切面反射获取方法

标签:nat   class   cep   null   except   row   get   pes   illegal   

原文地址:https://www.cnblogs.com/yuhuameng/p/11167355.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!