org.springframework.aop.interceptor
Class PerformanceMonitorInterceptor

java.lang.Object
  extended byorg.springframework.aop.interceptor.PerformanceMonitorInterceptor
All Implemented Interfaces:
Advice, Interceptor, MethodInterceptor, Serializable

public class PerformanceMonitorInterceptor
extends Object
implements MethodInterceptor, Serializable

Trivial performance monitor interceptor. This interceptor has no effect on the intercepted method call.

Presently logs information using Commons Logging, at "info" level. Could make this much more sophisticated, storing information etc.

Author:
Rod Johnson, Dmitriy Kopylenko
See Also:
Serialized Form

Field Summary
protected static Log logger
          Static to avoid the need to serialize it
 
Constructor Summary
PerformanceMonitorInterceptor()
           
 
Method Summary
 Object invoke(MethodInvocation invocation)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

logger

protected static final Log logger
Static to avoid the need to serialize it

Constructor Detail

PerformanceMonitorInterceptor

public PerformanceMonitorInterceptor()
Method Detail

invoke

public Object invoke(MethodInvocation invocation)
              throws Throwable
Specified by:
invoke in interface MethodInterceptor
Throws:
Throwable


Copyright (C) 2003-2004 The Spring Framework Project.