Uses of Interface
org.aopalliance.aop.Advice
Packages that use Advice
Package
Description
The AOP Alliance reflective interception abstraction.
Core Spring AOP interfaces, built on AOP Alliance AOP interoperability interfaces.
AspectJ integration package.
Classes enabling AspectJ 5 @Annotated classes to be used in Spring AOP.
Package containing Spring's basic AOP infrastructure, compliant with the
AOP Alliance interfaces.
SPI package allowing Spring AOP framework to handle arbitrary advice types.
Provides miscellaneous interceptor implementations.
Convenience classes for using Spring's AOP API.
AOP-based solution for declarative caching demarcation.
AOP-based solution for declarative caching demarcation using JSR-107 annotations.
Support classes for application events, like standard context events.
Annotation support for DAOs.
Support classes for DAO implementations,
providing miscellaneous utility methods.
Provides support for accessing remote MBean resources.
Classes supporting the
org.springframework.orm.hibernate5
package.Annotation support for asynchronous method execution.
AOP-based solution for declarative transaction demarcation.
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.interceptModifier and TypeInterfaceDescriptioninterface
Intercepts the construction of a new object.interface
This interface represents a generic interceptor.interface
Intercepts calls on an interface on its way to the target. -
Uses of Advice in org.springframework.aop
Subinterfaces of Advice in org.springframework.aopModifier and TypeInterfaceDescriptioninterface
Common marker interface for after advice, such asAfterReturningAdvice
andThrowsAdvice
.interface
After returning advice is invoked only on normal method return, not if an exception is thrown.interface
Common marker interface for before advice, such asMethodBeforeAdvice
.interface
Subinterface of AOP Alliance Advice that allows additional interfaces to be implemented by an Advice, and available via a proxy using that interceptor.interface
Subinterface of AOP Alliance MethodInterceptor that allows additional interfaces to be implemented by the interceptor, and available via a proxy using that interceptor.interface
Advice invoked before a method is invoked.interface
Tag interface for throws advice.Fields in org.springframework.aop declared as AdviceModifier and TypeFieldDescriptionstatic final Advice
Advisor.EMPTY_ADVICE
Common placeholder for an emptyAdvice
to be returned fromAdvisor.getAdvice()
if no proper advice has been configured (yet).Methods in org.springframework.aop that return Advice -
Uses of Advice in org.springframework.aop.aspectj
Classes in org.springframework.aop.aspectj that implement AdviceModifier and TypeClassDescriptionclass
Base class for AOP AllianceAdvice
classes wrapping an AspectJ aspect or an AspectJ-annotated advice method.class
Spring AOP advice wrapping an AspectJ after advice method.class
Spring AOP advice wrapping an AspectJ after-returning advice method.class
Spring AOP advice wrapping an AspectJ after-throwing advice method.class
Spring AOP around advice (MethodInterceptor) that wraps an AspectJ advice method.class
Spring AOP advice that wraps an AspectJ before method.Methods in org.springframework.aop.aspectj that return Advice -
Uses of Advice in org.springframework.aop.aspectj.annotation
Methods in org.springframework.aop.aspectj.annotation that return AdviceModifier and TypeMethodDescriptionAspectJAdvisorFactory.getAdvice
(Method candidateAdviceMethod, AspectJExpressionPointcut expressionPointcut, MetadataAwareAspectInstanceFactory aspectInstanceFactory, int declarationOrder, String aspectName) Build a Spring AOP Advice for the given AspectJ advice method.ReflectiveAspectJAdvisorFactory.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 AdviceModifier and TypeMethodDescriptionvoid
Add the given AOP Alliance Advice at the specified position in the advice chain.void
Add the given AOP Alliance advice to the tail of the advice (interceptor) chain.void
Cannot add introductions this way unless the advice implements IntroductionInfo.void
boolean
AdvisedSupport.adviceIncluded
(Advice advice) Is the given advice included in any advisor within this proxy configuration?int
Return the index (from 0) of the given AOP Alliance Advice, or -1 if no such advice is an advice for this proxy.int
boolean
Advised.removeAdvice
(Advice advice) Remove the Advisor containing the given advice.boolean
AdvisedSupport.removeAdvice
(Advice advice) -
Uses of Advice in org.springframework.aop.framework.adapter
Classes in org.springframework.aop.framework.adapter that implement AdviceModifier and TypeClassDescriptionclass
Interceptor to wrap anAfterReturningAdvice
.class
Interceptor to wrap aMethodBeforeAdvice
.class
Interceptor to wrap an after-throwing advice.Methods in org.springframework.aop.framework.adapter with parameters of type AdviceModifier and TypeMethodDescriptionboolean
AdvisorAdapter.supportsAdvice
(Advice advice) Does this adapter understand this advice object? Is it valid to invoke thegetInterceptors
method 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 AdviceModifier and TypeClassDescriptionclass
Base class for monitoring interceptors, such as performance monitors.class
BaseMethodInterceptor
implementation for tracing.class
AOP AllianceMethodInterceptor
that processes method invocations asynchronously, using a givenAsyncTaskExecutor
.class
Interceptor that throttles concurrent access, blocking invocations if a specified concurrency limit is reached.class
MethodInterceptor
implementation that allows for highly customizable method-level tracing, using placeholders.class
AOP AllianceMethodInterceptor
that can be introduced in a chain to display verbose information about intercepted invocations to the logger.final class
Interceptor that exposes the currentMethodInvocation
as a thread-local object.class
Simple AOP AllianceMethodInterceptor
for performance monitoring.class
Simple AOP AllianceMethodInterceptor
that 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 AdviceModifier and TypeClassDescriptionclass
Convenient implementation of theIntroductionInterceptor
interface.class
Convenient implementation of theIntroductionInterceptor
interface.Methods in org.springframework.aop.support that return AdviceModifier and TypeMethodDescriptionAbstractBeanFactoryPointcutAdvisor.getAdvice()
AbstractGenericPointcutAdvisor.getAdvice()
DefaultIntroductionAdvisor.getAdvice()
StaticMethodMatcherPointcutAdvisor.getAdvice()
Methods in org.springframework.aop.support with parameters of type AdviceModifier and TypeMethodDescriptionvoid
Specify a particular instance of the target advice directly, avoiding lazy resolution inAbstractBeanFactoryPointcutAdvisor.getAdvice()
.void
Specify the advice that this advisor should apply.void
Constructors in org.springframework.aop.support with parameters of type AdviceModifierConstructorDescriptionDefaultIntroductionAdvisor
(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.Create a new StaticMethodMatcherPointcutAdvisor for the given advice. -
Uses of Advice in org.springframework.cache.interceptor
Classes in org.springframework.cache.interceptor that implement AdviceModifier and TypeClassDescriptionclass
AOP 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 AdviceModifier and TypeClassDescriptionclass
AOP 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 AdviceModifier and TypeClassDescriptionclass
Interceptor
that publishes anApplicationEvent
to allApplicationListeners
registered with anApplicationEventPublisher
after each successful method invocation. -
Uses of Advice in org.springframework.dao.annotation
Methods in org.springframework.dao.annotation that return Advice -
Uses of Advice in org.springframework.dao.support
Classes in org.springframework.dao.support that implement AdviceModifier and TypeClassDescriptionclass
AOP Alliance MethodInterceptor that provides persistence exception translation based on a given PersistenceExceptionTranslator. -
Uses of Advice in org.springframework.jmx.access
Classes in org.springframework.jmx.access that implement AdviceModifier and TypeClassDescriptionclass
MethodInterceptor
that routes calls to an MBean running on the suppliedMBeanServerConnection
.class
Creates 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 AdviceModifier and TypeClassDescriptionclass
Simple AOP AllianceMethodInterceptor
implementation that binds a new HibernateSession
for each method invocation, if none bound before. -
Uses of Advice in org.springframework.scheduling.annotation
Classes in org.springframework.scheduling.annotation that implement AdviceModifier and TypeClassDescriptionclass
Specialization ofAsyncExecutionInterceptor
that delegates method execution to anExecutor
based on theAsync
annotation.Methods in org.springframework.scheduling.annotation that return AdviceModifier and TypeMethodDescriptionprotected Advice
AsyncAnnotationAdvisor.buildAdvice
(Supplier<Executor> executor, Supplier<AsyncUncaughtExceptionHandler> exceptionHandler) AsyncAnnotationAdvisor.getAdvice()
-
Uses of Advice in org.springframework.transaction.interceptor
Classes in org.springframework.transaction.interceptor that implement AdviceModifier and TypeClassDescriptionclass
AOP Alliance MethodInterceptor for declarative transaction management using the common Spring transaction infrastructure (PlatformTransactionManager
/ReactiveTransactionManager
).Methods in org.springframework.transaction.interceptor that return Advice -
Uses of Advice in org.springframework.validation.beanvalidation
Classes in org.springframework.validation.beanvalidation that implement AdviceModifier and TypeClassDescriptionclass
An AOP AllianceMethodInterceptor
implementation that delegates to a JSR-303 provider for performing method-level validation on annotated methods.Methods in org.springframework.validation.beanvalidation that return AdviceModifier and TypeMethodDescriptionprotected Advice
MethodValidationPostProcessor.createMethodValidationAdvice
(Supplier<Validator> validator) Create AOP advice for method validation purposes, to be applied with a pointcut for the specified 'validated' annotation.