I've defined the following AOP config in spring:
<aop:config>
<aop:aspect ref="aopAdvice">
<aop:around
pointcut="execution(* com.bis.client.auto.ClientHandler.sendCanonical(..))"
method="methodDuration"/>
</aop:aspect>
<aop:aspect ref="aopAdvice">
<aop:around
pointcut="execution(public * com.bis.client.auto.MessageHandlerImpl.messageArrived(..))"
method="methodDuration"/>
</aop:aspect>
</aop:config>
I basically want the methodDuration method to be called when the sendCanonical method or the message method gets called.
The issue is the advice never gets invoked, even though im 100% sure that those methods get called.
Any ideas?