statful/statful-client-java

Aspect Pointcut

Closed this issue · 1 comments

StatfulAspect @Around definition is defined as:

@annotation(timer)

Which means that it will can intercept both method call and method execution, which most likely is not the intended behaviour.

The annotation should be defined as:

@annotation(timer) && && execution(* *(..))

This has been fixed and released on 1.3.1