0

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>

しかし、フローインターセプターは呼び出されていません。私が欠けているものを教えてください。

4

1 に答える 1

0

log4j プロパティをトレース レベルに設定する必要があることがわかりました。そうしないと、呼び出しに失敗します。

于 2014-01-15T10:27:58.143 に答える