类的使用
org.springframework.aop.framework.AbstractAdvisingBeanPostProcessor
使用AbstractAdvisingBeanPostProcessor的程序包 程序包 说明 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.org.springframework.aop.framework.autoproxy中AbstractAdvisingBeanPostProcessor的使用
org.springframework.aop.framework.autoproxy中AbstractAdvisingBeanPostProcessor的子类 修饰符和类型 类 说明 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).org.springframework.dao.annotation中AbstractAdvisingBeanPostProcessor的使用
org.springframework.dao.annotation中AbstractAdvisingBeanPostProcessor的子类 修饰符和类型 类 说明 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).org.springframework.scheduling.annotation中AbstractAdvisingBeanPostProcessor的使用
org.springframework.scheduling.annotation中AbstractAdvisingBeanPostProcessor的子类 修饰符和类型 类 说明 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).org.springframework.validation.beanvalidation中AbstractAdvisingBeanPostProcessor的使用
org.springframework.validation.beanvalidation中AbstractAdvisingBeanPostProcessor的子类 修饰符和类型 类 说明 classMethodValidationPostProcessorA convenientBeanPostProcessorimplementation that delegates to a JSR-303 provider for performing method-level validation on annotated methods.