0
JAMon API를 사용하여 성능 통계 용으로 Spring AOP를 사용하고 있습니다.스프링 AOP (노새 포함)
<bean id="timingAdvice" class="com.example.logging.interceptor.ServicePerformanceInterceptor"/>
<aop:config>
<aop:advisor pointcut="execution(* com.example.resource.Resource.*(..))" advice-ref="timingAdvice"/>
</aop:config>
그러나 흐름 인터셉터에서
public class ServicePerformanceInterceptor extends JamonPerformanceMonitorInterceptor {
@Override
protected Object invokeUnderTrace(MethodInvocation invocation, Log logger) throws Throwable {
.
.
.
}
그리고 빈 설정이 호출 받고 있지 않습니다. 제가 누락 된 부분을 말씀해 주시겠습니까?
전체 구성은 무엇입니까? – Seba