我有一个要求从切入点实现获取截获方法的参数值,如下所示。
截获方法:
public void execute(Object mapValues)throws Throwable{
....
}
和Aspect实施
@AfterThrowing(pointcut = "execution(*com.AdhocJob.execute(..))", throwing="ex")
public void afterThrowing(JoinPoint pjp,Throwable ex) {
MethodSignature signature = (MethodSignature) pjp.getSignature();
....
}
是否可以在afterThrowing方法中获取“mapValues”参数的实例。 有人可以对它进行一些说明。