Uses of Interface
org.aopalliance.intercept.MethodInterceptor
Packages that use MethodInterceptor Package Description org.springframework.aop Core Spring AOP interfaces, built on AOP Alliance AOP interoperability interfaces.org.springframework.aop.aspectj AspectJ integration package.org.springframework.aop.framework.adapter SPI package allowing Spring AOP framework to handle arbitrary advice types.org.springframework.aop.interceptor Provides miscellaneous interceptor implementations.org.springframework.aop.support Convenience classes for using Spring's AOP API.org.springframework.cache.interceptor AOP-based solution for declarative caching demarcation.org.springframework.cache.jcache.interceptor AOP-based solution for declarative caching demarcation using JSR-107 annotations.org.springframework.context.event Support classes for application events, like standard context events.org.springframework.dao.support Support classes for DAO implementations, providing miscellaneous utility methods.org.springframework.ejb.access This package contains classes that allow easy access to EJBs.org.springframework.jms.remoting Remoting classes for transparent Java-to-Java remoting via a JMS provider.org.springframework.jmx.access Provides support for accessing remote MBean resources.org.springframework.orm.hibernate5.support Classes supporting theorg.springframework.orm.hibernate5package.org.springframework.remoting.caucho This package provides remoting classes for Caucho's Hessian protocol: a proxy factory for accessing Hessian services, and an exporter for making beans available to Hessian clients.org.springframework.remoting.httpinvoker Remoting classes for transparent Java-to-Java remoting via HTTP invokers.org.springframework.remoting.jaxws Remoting classes for Web Services via JAX-WS (the successor of JAX-RPC), as included in Java 6 and Java EE 5.org.springframework.remoting.rmi Remoting classes for conventional RMI and transparent remoting via RMI invokers.org.springframework.remoting.support Generic support classes for remoting implementations.org.springframework.scheduling.annotation Java 5 annotation for asynchronous method execution.org.springframework.transaction.interceptor AOP-based solution for declarative transaction demarcation.org.springframework.validation.beanvalidation Support classes for integrating a JSR-303 Bean Validation provider (such as Hibernate Validator) into a Spring ApplicationContext and in particular with Spring's data binding and validation APIs.Uses of MethodInterceptor in org.springframework.aop
Subinterfaces of MethodInterceptor in org.springframework.aop Modifier and Type Interface Description interfaceIntroductionInterceptorSubinterface of AOP Alliance MethodInterceptor that allows additional interfaces to be implemented by the interceptor, and available via a proxy using that interceptor.Uses of MethodInterceptor in org.springframework.aop.aspectj
Classes in org.springframework.aop.aspectj that implement MethodInterceptor Modifier and Type Class Description classAspectJAfterAdviceSpring AOP advice wrapping an AspectJ after advice method.classAspectJAfterThrowingAdviceSpring AOP advice wrapping an AspectJ after-throwing advice method.classAspectJAroundAdviceSpring AOP around advice (MethodInterceptor) that wraps an AspectJ advice method.Uses of MethodInterceptor in org.springframework.aop.framework.adapter
Classes in org.springframework.aop.framework.adapter that implement MethodInterceptor Modifier and Type Class Description classAfterReturningAdviceInterceptorInterceptor to wrap anAfterReturningAdvice.classMethodBeforeAdviceInterceptorInterceptor to wrap aMethodBeforeAdvice.classThrowsAdviceInterceptorInterceptor to wrap an after-throwing advice.Methods in org.springframework.aop.framework.adapter that return MethodInterceptor Modifier and Type Method Description MethodInterceptorAdvisorAdapter. getInterceptor(Advisor advisor)Return an AOP Alliance MethodInterceptor exposing the behavior of the given advice to an interception-based AOP framework.MethodInterceptor[]AdvisorAdapterRegistry. getInterceptors(Advisor advisor)Return an array of AOP Alliance MethodInterceptors to allow use of the given Advisor in an interception-based framework.MethodInterceptor[]DefaultAdvisorAdapterRegistry. getInterceptors(Advisor advisor)Uses of MethodInterceptor in org.springframework.aop.interceptor
Classes in org.springframework.aop.interceptor that implement MethodInterceptor Modifier and Type Class Description classAbstractMonitoringInterceptorBase class for monitoring interceptors, such as performance monitors.classAbstractTraceInterceptorBaseMethodInterceptorimplementation for tracing.classAsyncExecutionInterceptorAOP AllianceMethodInterceptorthat processes method invocations asynchronously, using a givenAsyncTaskExecutor.classConcurrencyThrottleInterceptorInterceptor that throttles concurrent access, blocking invocations if a specified concurrency limit is reached.classCustomizableTraceInterceptorMethodInterceptorimplementation that allows for highly customizable method-level tracing, using placeholders.classDebugInterceptorAOP AllianceMethodInterceptorthat can be introduced in a chain to display verbose information about intercepted invocations to the logger.classExposeInvocationInterceptorInterceptor that exposes the currentMethodInvocationas a thread-local object.classJamonPerformanceMonitorInterceptorPerformance monitor interceptor that uses JAMon library to perform the performance measurement on the intercepted method and output the stats.classPerformanceMonitorInterceptorSimple AOP AllianceMethodInterceptorfor performance monitoring.classSimpleTraceInterceptorSimple AOP AllianceMethodInterceptorthat can be introduced in a chain to display verbose trace information about intercepted method invocations, with method entry and method exit info.Uses of MethodInterceptor in org.springframework.aop.support
Classes in org.springframework.aop.support that implement MethodInterceptor Modifier and Type Class Description classDelegatePerTargetObjectIntroductionInterceptorConvenient implementation of theIntroductionInterceptorinterface.classDelegatingIntroductionInterceptorConvenient implementation of theIntroductionInterceptorinterface.Uses of MethodInterceptor in org.springframework.cache.interceptor
Classes in org.springframework.cache.interceptor that implement MethodInterceptor Modifier and Type Class Description classCacheInterceptorAOP Alliance MethodInterceptor for declarative cache management using the common Spring caching infrastructure (Cache).Uses of MethodInterceptor in org.springframework.cache.jcache.interceptor
Classes in org.springframework.cache.jcache.interceptor that implement MethodInterceptor Modifier and Type Class Description classJCacheInterceptorAOP Alliance MethodInterceptor for declarative cache management using JSR-107 caching annotations.Uses of MethodInterceptor in org.springframework.context.event
Classes in org.springframework.context.event that implement MethodInterceptor Modifier and Type Class Description classEventPublicationInterceptorInterceptorthat publishes anApplicationEventto allApplicationListenersregistered with anApplicationEventPublisherafter each successful method invocation.Uses of MethodInterceptor in org.springframework.dao.support
Classes in org.springframework.dao.support that implement MethodInterceptor Modifier and Type Class Description classPersistenceExceptionTranslationInterceptorAOP Alliance MethodInterceptor that provides persistence exception translation based on a given PersistenceExceptionTranslator.Uses of MethodInterceptor in org.springframework.ejb.access
Classes in org.springframework.ejb.access that implement MethodInterceptor Modifier and Type Class Description classAbstractRemoteSlsbInvokerInterceptorBase class for interceptors proxying remote Stateless Session Beans.classAbstractSlsbInvokerInterceptorBase class for AOP interceptors invoking local or remote Stateless Session Beans.classLocalSlsbInvokerInterceptorInvoker for a local Stateless Session Bean.classLocalStatelessSessionProxyFactoryBeanConvenientFactoryBeanfor local Stateless Session Bean (SLSB) proxies.classSimpleRemoteSlsbInvokerInterceptorBasic invoker for a remote Stateless Session Bean.classSimpleRemoteStatelessSessionProxyFactoryBeanConvenientFactoryBeanfor remote SLSB proxies.Uses of MethodInterceptor in org.springframework.jms.remoting
Classes in org.springframework.jms.remoting that implement MethodInterceptor Modifier and Type Class Description classJmsInvokerClientInterceptorMethodInterceptorfor accessing a JMS-based remote service.classJmsInvokerProxyFactoryBeanFactoryBean for JMS invoker proxies.Uses of MethodInterceptor in org.springframework.jmx.access
Classes in org.springframework.jmx.access that implement MethodInterceptor Modifier and Type Class Description classMBeanClientInterceptorMethodInterceptorthat routes calls to an MBean running on the suppliedMBeanServerConnection.classMBeanProxyFactoryBeanCreates a proxy to a managed resource running either locally or remotely.Uses of MethodInterceptor in org.springframework.orm.hibernate5.support
Classes in org.springframework.orm.hibernate5.support that implement MethodInterceptor Modifier and Type Class Description classOpenSessionInterceptorSimple AOP AllianceMethodInterceptorimplementation that binds a new HibernateSessionfor each method invocation, if none bound before.Uses of MethodInterceptor in org.springframework.remoting.caucho
Classes in org.springframework.remoting.caucho that implement MethodInterceptor Modifier and Type Class Description classHessianClientInterceptorMethodInterceptorfor accessing a Hessian service.classHessianProxyFactoryBeanFactoryBeanfor Hessian proxies.Uses of MethodInterceptor in org.springframework.remoting.httpinvoker
Classes in org.springframework.remoting.httpinvoker that implement MethodInterceptor Modifier and Type Class Description classHttpInvokerClientInterceptorMethodInterceptorfor accessing an HTTP invoker service.classHttpInvokerProxyFactoryBeanFactoryBeanfor HTTP invoker proxies.Uses of MethodInterceptor in org.springframework.remoting.jaxws
Classes in org.springframework.remoting.jaxws that implement MethodInterceptor Modifier and Type Class Description classJaxWsPortClientInterceptorMethodInterceptorfor accessing a specific port of a JAX-WS service.classJaxWsPortProxyFactoryBeanFactoryBeanfor a specific port of a JAX-WS service.Uses of MethodInterceptor in org.springframework.remoting.rmi
Classes in org.springframework.remoting.rmi that implement MethodInterceptor Modifier and Type Class Description classJndiRmiClientInterceptorMethodInterceptorfor accessing RMI services from JNDI.classJndiRmiProxyFactoryBeanFactoryBeanfor RMI proxies from JNDI.classRmiClientInterceptorMethodInterceptorfor accessing conventional RMI services or RMI invokers.classRmiProxyFactoryBeanFactoryBeanfor RMI proxies, supporting both conventional RMI services and RMI invokers.Uses of MethodInterceptor in org.springframework.remoting.support
Classes in org.springframework.remoting.support that implement MethodInterceptor Modifier and Type Class Description classRemoteInvocationTraceInterceptorAOP Alliance MethodInterceptor for tracing remote invocations.Uses of MethodInterceptor in org.springframework.scheduling.annotation
Classes in org.springframework.scheduling.annotation that implement MethodInterceptor Modifier and Type Class Description classAnnotationAsyncExecutionInterceptorSpecialization ofAsyncExecutionInterceptorthat delegates method execution to anExecutorbased on theAsyncannotation.Uses of MethodInterceptor in org.springframework.transaction.interceptor
Classes in org.springframework.transaction.interceptor that implement MethodInterceptor Modifier and Type Class Description classTransactionInterceptorAOP Alliance MethodInterceptor for declarative transaction management using the common Spring transaction infrastructure (PlatformTransactionManager/ReactiveTransactionManager).Uses of MethodInterceptor in org.springframework.validation.beanvalidation
Classes in org.springframework.validation.beanvalidation that implement MethodInterceptor Modifier and Type Class Description classMethodValidationInterceptorAn AOP AllianceMethodInterceptorimplementation that delegates to a JSR-303 provider for performing method-level validation on annotated methods.