| Home >> All >> org >> springframework >> aop >> [ interceptor Javadoc ] |
org.springframework.aop.interceptor: Javadoc index of package org.springframework.aop.interceptor.
Package Samples:
org.springframework.aop.interceptor
Classes:
ExposeInvocationInterceptor: Interceptor that exposes the current MethodInvocation. We occasionally need to do this--for example, when a pointcut or target object needs to know the Invocation context. Don't use this interceptor unless this is really necessary. Target objects should not normally know about Spring AOP, as this creates a dependency on Spring. Target objects should be plain POJOs as far as possible. If used, this interceptor will normally be the first in the interceptor chain.
ConcurrencyThrottleInterceptor: Interceptor that throttles concurrent access, blocking invocations if a specified concurrency limit is reached. Can be applied to methods of local services that involve heavy use of system resources, in a scenario where it is more efficient to throttle concurrency for a specific service rather than restricting the entire thread pool (e.g. the web container's thread pool).
PerformanceMonitorInterceptor: 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.
TraceInterceptor: Simple AOP Alliance MethodInterceptor that can be introduced in a chain to display verbose trace information about intercepted method invocations with method entry and method exit info using Commons Logging at DEBUG level.
JamonPerformanceMonitorInterceptor: Performance monitor interceptor that uses JAMon library to perfom the performance mesurment on the intercepted method and output the stats. This code is inspired by Thierry Templier's blog.
DebugInterceptor: AOP Alliance MethodInterceptor that can be introduced in a chain to display verbose information about intercepted invocations to the logger.
ClassLoaderAnalyzerInterceptor: Trivial classloader analyzer interceptor.
| Home | Contact Us | Privacy Policy | Terms of Service |