导航

spring aop 获取拦截的方法(Method对象)

Posted on 2017-09-19 17:30  yjss  阅读(2265)  评论(0编辑  收藏  举报
Signature signature = joinPoint.getSignature();    
MethodSignature methodSignature = (MethodSignature)signature;    
Method targetMethod = methodSignature.getMethod();