Uses of Class
org.springframework.aop.framework.AbstractAdvisingBeanPostProcessor
Packages that use AbstractAdvisingBeanPostProcessor Package Description org.springframework.aop.framework.autoproxy Bean post-processors for use in ApplicationContexts to simplify AOP usage by automatically creating AOP proxies without the need to use a ProxyFactoryBean.org.springframework.dao.annotation Annotation support for DAOs.org.springframework.scheduling.annotation Java 5 annotation for asynchronous method execution.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 AbstractAdvisingBeanPostProcessor in org.springframework.aop.framework.autoproxy
Subclasses of AbstractAdvisingBeanPostProcessor in org.springframework.aop.framework.autoproxy Modifier and Type Class Description classAbstractBeanFactoryAwareAdvisingPostProcessorExtension ofAbstractAutoProxyCreatorwhich 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.annotation Modifier and Type Class Description classPersistenceExceptionTranslationPostProcessorBean 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
Subclasses of AbstractAdvisingBeanPostProcessor in org.springframework.scheduling.annotation Modifier and Type Class Description classAsyncAnnotationBeanPostProcessorBean 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 of the target's interfaces).Uses of AbstractAdvisingBeanPostProcessor in org.springframework.validation.beanvalidation
Subclasses of AbstractAdvisingBeanPostProcessor in org.springframework.validation.beanvalidation Modifier and Type Class Description classMethodValidationPostProcessorA convenientBeanPostProcessorimplementation that delegates to a JSR-303 provider for performing method-level validation on annotated methods.