1.

What Is A Proceedingjoinpoint?

Answer»

An around advice is a special advice that can CONTROL when and if a method (or other join point) is executed. This is true for around advices only, so they REQUIRE an argument of type ProceedingJoinPoint, WHEREAS other advices just use a PLAIN JoinPoint. ProceedingJoinPoint is used as an argument of the methods which hints for before, after, after throwing and around. ProceedingJoinPoint has the methods LIKE getKind, getTarget, proceed etc.

An around advice is a special advice that can control when and if a method (or other join point) is executed. This is true for around advices only, so they require an argument of type ProceedingJoinPoint, whereas other advices just use a plain JoinPoint. ProceedingJoinPoint is used as an argument of the methods which hints for before, after, after throwing and around. ProceedingJoinPoint has the methods like getKind, getTarget, proceed etc.



Discussion

No Comment Found