Uses of Interface
org.aopalliance.aop.Advice
Packages that use Advice Package Description org.aopalliance.intercept The AOP Alliance reflective interception abstraction.org.springframework.aop Core Spring AOP interfaces, built on AOP Alliance AOP interoperability interfaces.org.springframework.aop.aspectj AspectJ integration package.org.springframework.aop.aspectj.annotation Classes enabling AspectJ 5 @Annotated classes to be used in Spring AOP.org.springframework.aop.framework Package containing Spring's basic AOP infrastructure, compliant with the AOP Alliance interfaces.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.annotation Annotation support for DAOs.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 Advice in org.aopalliance.intercept
Subinterfaces of Advice in org.aopalliance.intercept Modifier and Type Interface Description interfaceConstructorInterceptorIntercepts the construction of a new object.interfaceInterceptorThis interface represents a generic interceptor.interfaceMethodInterceptorIntercepts calls on an interface on its way to the target.Uses of Advice in org.springframework.aop
Subinterfaces of Advice in org.springframework.aop Modifier and Type Interface Description interfaceAfterAdviceCommon marker interface for after advice, such asAfterReturningAdviceandThrowsAdvice.interfaceAfterReturningAdviceAfter returning advice is invoked only on normal method return, not if an exception is thrown.interfaceBeforeAdviceCommon marker interface for before advice, such asMethodBeforeAdvice.interfaceDynamicIntroductionAdviceSubinterface of AOP Alliance Advice that allows additional interfaces to be implemented by an Advice, and available via a proxy using that interceptor.interfaceIntroductionInterceptorSubinterface of AOP Alliance MethodInterceptor that allows additional interfaces to be implemented by the interceptor, and available via a proxy using that interceptor.interfaceMethodBeforeAdviceAdvice invoked before a method is invoked.interfaceThrowsAdviceTag interface for throws advice.Fields in org.springframework.aop declared as Advice Modifier and Type Field Description static AdviceAdvisor. EMPTY_ADVICECommon placeholder for an emptyAdviceto be returned fromAdvisor.getAdvice()if no proper advice has been configured (yet).Methods in org.springframework.aop that return Advice Modifier and Type Method Description AdviceAdvisor. getAdvice()Return the advice part of this aspect.Uses of Advice in org.springframework.aop.aspectj
Classes in org.springframework.aop.aspectj that implement Advice Modifier and Type Class Description classAbstractAspectJAdviceBase class for AOP AllianceAdviceclasses wrapping an AspectJ aspect or an AspectJ-annotated advice method.classAspectJAfterAdviceSpring AOP advice wrapping an AspectJ after advice method.classAspectJAfterReturningAdviceSpring AOP advice wrapping an AspectJ after-returning advice method.classAspectJAfterThrowingAdviceSpring AOP advice wrapping an AspectJ after-throwing advice method.classAspectJAroundAdviceSpring AOP around advice (MethodInterceptor) that wraps an AspectJ advice method.classAspectJMethodBeforeAdviceSpring AOP advice that wraps an AspectJ before method.Uses of Advice in org.springframework.aop.aspectj.annotation
Methods in org.springframework.aop.aspectj.annotation that return Advice Modifier and Type Method Description AdviceAspectJAdvisorFactory. getAdvice(Method candidateAdviceMethod, AspectJExpressionPointcut expressionPointcut, MetadataAwareAspectInstanceFactory aspectInstanceFactory, int declarationOrder, String aspectName)Build a Spring AOP Advice for the given AspectJ advice method.AdviceReflectiveAspectJAdvisorFactory. getAdvice(Method candidateAdviceMethod, AspectJExpressionPointcut expressionPointcut, MetadataAwareAspectInstanceFactory aspectInstanceFactory, int declarationOrder, String aspectName)Uses of Advice in org.springframework.aop.framework
Methods in org.springframework.aop.framework with parameters of type Advice Modifier and Type Method Description voidAdvised. addAdvice(int pos, Advice advice)Add the given AOP Alliance Advice at the specified position in the advice chain.voidAdvised. addAdvice(Advice advice)Add the given AOP Alliance advice to the tail of the advice (interceptor) chain.voidAdvisedSupport. addAdvice(int pos, Advice advice)Cannot add introductions this way unless the advice implements IntroductionInfo.voidAdvisedSupport. addAdvice(Advice advice)booleanAdvisedSupport. adviceIncluded(Advice advice)Is the given advice included in any advisor within this proxy configuration?intAdvised. indexOf(Advice advice)Return the index (from 0) of the given AOP Alliance Advice, or -1 if no such advice is an advice for this proxy.intAdvisedSupport. indexOf(Advice advice)booleanAdvised. removeAdvice(Advice advice)Remove the Advisor containing the given advice.booleanAdvisedSupport. removeAdvice(Advice advice)Uses of Advice in org.springframework.aop.framework.adapter
Classes in org.springframework.aop.framework.adapter that implement Advice 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 with parameters of type Advice Modifier and Type Method Description booleanAdvisorAdapter. supportsAdvice(Advice advice)Does this adapter understand this advice object? Is it valid to invoke thegetInterceptorsmethod with an Advisor that contains this advice as an argument?Uses of Advice in org.springframework.aop.interceptor
Classes in org.springframework.aop.interceptor that implement Advice 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 Advice in org.springframework.aop.support
Classes in org.springframework.aop.support that implement Advice Modifier and Type Class Description classDelegatePerTargetObjectIntroductionInterceptorConvenient implementation of theIntroductionInterceptorinterface.classDelegatingIntroductionInterceptorConvenient implementation of theIntroductionInterceptorinterface.Methods in org.springframework.aop.support that return Advice Modifier and Type Method Description AdviceAbstractBeanFactoryPointcutAdvisor. getAdvice()AdviceAbstractGenericPointcutAdvisor. getAdvice()AdviceDefaultIntroductionAdvisor. getAdvice()AdviceStaticMethodMatcherPointcutAdvisor. getAdvice()Methods in org.springframework.aop.support with parameters of type Advice Modifier and Type Method Description voidAbstractBeanFactoryPointcutAdvisor. setAdvice(Advice advice)Specify a particular instance of the target advice directly, avoiding lazy resolution inAbstractBeanFactoryPointcutAdvisor.getAdvice().voidAbstractGenericPointcutAdvisor. setAdvice(Advice advice)Specify the advice that this advisor should apply.voidStaticMethodMatcherPointcutAdvisor. setAdvice(Advice advice)Constructors in org.springframework.aop.support with parameters of type Advice Constructor Description DefaultIntroductionAdvisor(Advice advice)Create a DefaultIntroductionAdvisor for the given advice.DefaultIntroductionAdvisor(Advice advice, IntroductionInfo introductionInfo)Create a DefaultIntroductionAdvisor for the given advice.DefaultPointcutAdvisor(Advice advice)Create a DefaultPointcutAdvisor that matches all methods.DefaultPointcutAdvisor(Pointcut pointcut, Advice advice)Create a DefaultPointcutAdvisor, specifying Pointcut and Advice.NameMatchMethodPointcutAdvisor(Advice advice)RegexpMethodPointcutAdvisor(String[] patterns, Advice advice)Create a RegexpMethodPointcutAdvisor for the given advice.RegexpMethodPointcutAdvisor(String pattern, Advice advice)Create a RegexpMethodPointcutAdvisor for the given advice.RegexpMethodPointcutAdvisor(Advice advice)Create a RegexpMethodPointcutAdvisor for the given advice.StaticMethodMatcherPointcutAdvisor(Advice advice)Create a new StaticMethodMatcherPointcutAdvisor for the given advice.Uses of Advice in org.springframework.cache.interceptor
Classes in org.springframework.cache.interceptor that implement Advice Modifier and Type Class Description classCacheInterceptorAOP Alliance MethodInterceptor for declarative cache management using the common Spring caching infrastructure (Cache).Uses of Advice in org.springframework.cache.jcache.interceptor
Classes in org.springframework.cache.jcache.interceptor that implement Advice Modifier and Type Class Description classJCacheInterceptorAOP Alliance MethodInterceptor for declarative cache management using JSR-107 caching annotations.Uses of Advice in org.springframework.context.event
Classes in org.springframework.context.event that implement Advice Modifier and Type Class Description classEventPublicationInterceptorInterceptorthat publishes anApplicationEventto allApplicationListenersregistered with anApplicationEventPublisherafter each successful method invocation.Uses of Advice in org.springframework.dao.annotation
Methods in org.springframework.dao.annotation that return Advice Modifier and Type Method Description AdvicePersistenceExceptionTranslationAdvisor. getAdvice()Uses of Advice in org.springframework.dao.support
Classes in org.springframework.dao.support that implement Advice Modifier and Type Class Description classPersistenceExceptionTranslationInterceptorAOP Alliance MethodInterceptor that provides persistence exception translation based on a given PersistenceExceptionTranslator.Uses of Advice in org.springframework.ejb.access
Classes in org.springframework.ejb.access that implement Advice 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 Advice in org.springframework.jms.remoting
Classes in org.springframework.jms.remoting that implement Advice Modifier and Type Class Description classJmsInvokerClientInterceptorMethodInterceptorfor accessing a JMS-based remote service.classJmsInvokerProxyFactoryBeanFactoryBean for JMS invoker proxies.Uses of Advice in org.springframework.jmx.access
Classes in org.springframework.jmx.access that implement Advice 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 Advice in org.springframework.orm.hibernate5.support
Classes in org.springframework.orm.hibernate5.support that implement Advice Modifier and Type Class Description classOpenSessionInterceptorSimple AOP AllianceMethodInterceptorimplementation that binds a new HibernateSessionfor each method invocation, if none bound before.Uses of Advice in org.springframework.remoting.caucho
Classes in org.springframework.remoting.caucho that implement Advice Modifier and Type Class Description classHessianClientInterceptorMethodInterceptorfor accessing a Hessian service.classHessianProxyFactoryBeanFactoryBeanfor Hessian proxies.Uses of Advice in org.springframework.remoting.httpinvoker
Classes in org.springframework.remoting.httpinvoker that implement Advice Modifier and Type Class Description classHttpInvokerClientInterceptorMethodInterceptorfor accessing an HTTP invoker service.classHttpInvokerProxyFactoryBeanFactoryBeanfor HTTP invoker proxies.Uses of Advice in org.springframework.remoting.jaxws
Classes in org.springframework.remoting.jaxws that implement Advice 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 Advice in org.springframework.remoting.rmi
Classes in org.springframework.remoting.rmi that implement Advice 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 Advice in org.springframework.remoting.support
Classes in org.springframework.remoting.support that implement Advice Modifier and Type Class Description classRemoteInvocationTraceInterceptorAOP Alliance MethodInterceptor for tracing remote invocations.Uses of Advice in org.springframework.scheduling.annotation
Classes in org.springframework.scheduling.annotation that implement Advice Modifier and Type Class Description classAnnotationAsyncExecutionInterceptorSpecialization ofAsyncExecutionInterceptorthat delegates method execution to anExecutorbased on theAsyncannotation.Methods in org.springframework.scheduling.annotation that return Advice Modifier and Type Method Description protected AdviceAsyncAnnotationAdvisor. buildAdvice(Supplier<Executor> executor, Supplier<AsyncUncaughtExceptionHandler> exceptionHandler)AdviceAsyncAnnotationAdvisor. getAdvice()Uses of Advice in org.springframework.transaction.interceptor
Classes in org.springframework.transaction.interceptor that implement Advice Modifier and Type Class Description classTransactionInterceptorAOP Alliance MethodInterceptor for declarative transaction management using the common Spring transaction infrastructure (PlatformTransactionManager/ReactiveTransactionManager).Methods in org.springframework.transaction.interceptor that return Advice Modifier and Type Method Description AdviceTransactionAttributeSourceAdvisor. getAdvice()Uses of Advice in org.springframework.validation.beanvalidation
Classes in org.springframework.validation.beanvalidation that implement Advice Modifier and Type Class Description classMethodValidationInterceptorAn AOP AllianceMethodInterceptorimplementation that delegates to a JSR-303 provider for performing method-level validation on annotated methods.Methods in org.springframework.validation.beanvalidation that return Advice Modifier and Type Method Description protected AdviceMethodValidationPostProcessor. createMethodValidationAdvice(Validator validator)Create AOP advice for method validation purposes, to be applied with a pointcut for the specified 'validated' annotation.