I have one requirement to get the intercepted method's parameter value from pointcut implementation as follows.
Intercepted method :
public void execute(Object mapValues)throws Throwable{
....
}
and in Aspect Implementation
@AfterThrowing(pointcut = "execution(*com.AdhocJob.execute(..))", throwing="ex")
public void afterThrowing(JoinPoint pjp,Throwable ex) {
MethodSignature signature = (MethodSignature) pjp.getSignature();
....
}
Is it possible to get the instance of "mapValues" parameter in afterThrowing method. Could someone please put some light on it.