我在 spring 中定义了以下 AOP 配置:
<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>
我基本上希望在调用 sendCanonical 方法或 message 方法时调用 methodDuration 方法。
问题是建议永远不会被调用,即使我 100% 确定这些方法会被调用。
有任何想法吗?