切面反射获取方法
Posted yuhuameng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了切面反射获取方法相关的知识,希望对你有一定的参考价值。
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());
以上是关于切面反射获取方法的主要内容,如果未能解决你的问题,请参考以下文章