@Around("execution(* com.abc.processor.*.*(..))")
public Object examineParameters(ProceedingJoinPoint pjp, ???????????????)
throws Throwable
{
String newPattern = ???????????????????????????
return pjp.proceed(new Object[] {newPattern});
}
-----------------------
I am trying to build an around advice for printing out all target methods parameters. The problem is that the target methods could have any signatures.
Is spring AOP even supports ways for capturing any unknown method parameters signatures, so that any parameters are available for an advice method?


Reply With Quote
