我使用Spring AOP进行使用JAMon apis的性能分析。
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>
但是在流拦截器中没有被调用。你能告诉我我错过了什么吗?
答案 0 :(得分:0)
想通了,我需要将log4j属性设置为跟踪级别。否则它将无法调用。