Uses of Class
org.springframework.aop.framework.AbstractAdvisingBeanPostProcessor
Packages that use AbstractAdvisingBeanPostProcessor
Package
Description
Bean post-processors for use in ApplicationContexts to simplify AOP usage
by automatically creating AOP proxies without the need to use a ProxyFactoryBean.
Annotation support for DAOs.
Annotation support for asynchronous method execution.
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 AbstractAdvisingBeanPostProcessor in org.springframework.aop.framework.autoproxy
Modifier and TypeClassDescriptionclassExtension ofAbstractAdvisingBeanPostProcessorwhich implementsBeanFactoryAware, adds exposure of the original target class for each proxied bean (AutoProxyUtils.ORIGINAL_TARGET_CLASS_ATTRIBUTE), and participates in an externally enforced target-class mode for any given bean (AutoProxyUtils.PRESERVE_TARGET_CLASS_ATTRIBUTE). -
Uses of AbstractAdvisingBeanPostProcessor in org.springframework.dao.annotation
Subclasses of AbstractAdvisingBeanPostProcessor in org.springframework.dao.annotationModifier and TypeClassDescriptionclassBean post-processor that automatically applies persistence exception translation to any bean marked with Spring's @Repositoryannotation, adding a correspondingPersistenceExceptionTranslationAdvisorto the exposed proxy (either an existing AOP proxy or a newly generated proxy that implements all of the target's interfaces). -
Uses of AbstractAdvisingBeanPostProcessor in org.springframework.scheduling.annotation
Modifier and TypeClassDescriptionclassBean post-processor that automatically applies asynchronous invocation behavior to any bean that carries theAsyncannotation at class or method-level by adding a correspondingAsyncAnnotationAdvisorto the exposed proxy (either an existing AOP proxy or a newly generated proxy that implements all the target's interfaces). -
Uses of AbstractAdvisingBeanPostProcessor in org.springframework.validation.beanvalidation
Modifier and TypeClassDescriptionclassA convenientBeanPostProcessorimplementation that delegates to a JSR-303 provider for performing method-level validation on annotated methods.