JAMon API のパフォーマンス統計に Spring AOP を使用しています。
public class ServicePerformanceInterceptor extends JamonPerformanceMonitorInterceptor {
@Override
protected Object invokeUnderTrace(MethodInvocation invocation, Log logger) throws Throwable {
.
.
.
}
および Bean 構成
<bean id="timingAdvice" class="com.example.logging.interceptor.ServicePerformanceInterceptor"/>
<aop:config>
<aop:advisor pointcut="execution(* com.example.resource.Resource.*(..))" advice-ref="timingAdvice"/>
</aop:config>
しかし、フローインターセプターは呼び出されていません。私が欠けているものを教えてください。