Uses of Interface
org.springframework.beans.factory.config.SmartInstantiationAwareBeanPostProcessor
Packages that use SmartInstantiationAwareBeanPostProcessor
Package
Description
Classes enabling AspectJ 5 @Annotated classes to be used in Spring AOP.
Base classes enabling auto-proxying based on AspectJ.
Package containing Spring's basic AOP infrastructure, compliant with the
AOP Alliance interfaces.
Bean post-processors for use in ApplicationContexts to simplify AOP usage
by automatically creating AOP proxies without the need to use a ProxyFactoryBean.
Support package for annotation-driven bean configuration.
Annotation support for DAOs.
Annotation support for asynchronous method execution.
Support classes for Spring's scripting package.
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 SmartInstantiationAwareBeanPostProcessor in org.springframework.aop.aspectj.annotation
Classes in org.springframework.aop.aspectj.annotation that implement SmartInstantiationAwareBeanPostProcessorModifier and TypeClassDescriptionclassAspectJAwareAdvisorAutoProxyCreatorsubclass that processes all AspectJ annotation aspects in the current application context, as well as Spring Advisors. -
Uses of SmartInstantiationAwareBeanPostProcessor in org.springframework.aop.aspectj.autoproxy
Classes in org.springframework.aop.aspectj.autoproxy that implement SmartInstantiationAwareBeanPostProcessorModifier and TypeClassDescriptionclassAbstractAdvisorAutoProxyCreatorsubclass that exposes AspectJ's invocation context and understands AspectJ's rules for advice precedence when multiple pieces of advice come from the same aspect. -
Uses of SmartInstantiationAwareBeanPostProcessor in org.springframework.aop.framework
Classes in org.springframework.aop.framework that implement SmartInstantiationAwareBeanPostProcessorModifier and TypeClassDescriptionclassBase class forBeanPostProcessorimplementations that apply a Spring AOPAdvisorto specific beans. -
Uses of SmartInstantiationAwareBeanPostProcessor in org.springframework.aop.framework.autoproxy
Classes in org.springframework.aop.framework.autoproxy that implement SmartInstantiationAwareBeanPostProcessorModifier and TypeClassDescriptionclassGeneric auto proxy creator that builds AOP proxies for specific beans based on detected Advisors for each bean.classBeanPostProcessorimplementation that wraps each eligible bean with an AOP proxy, delegating to specified interceptors before invoking the bean itself.classExtension 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).classAuto proxy creator that identifies beans to proxy via a list of names.classBeanPostProcessorimplementation that creates AOP proxies based on all candidateAdvisors in the currentBeanFactory.classAuto-proxy creator that considers infrastructure Advisor beans only, ignoring any application-defined Advisors. -
Uses of SmartInstantiationAwareBeanPostProcessor in org.springframework.beans.factory.annotation
Classes in org.springframework.beans.factory.annotation that implement SmartInstantiationAwareBeanPostProcessorModifier and TypeClassDescriptionclassBeanPostProcessorimplementation that autowires annotated fields, setter methods, and arbitrary config methods. -
Uses of SmartInstantiationAwareBeanPostProcessor in org.springframework.dao.annotation
Classes in org.springframework.dao.annotation that implement SmartInstantiationAwareBeanPostProcessorModifier 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 SmartInstantiationAwareBeanPostProcessor in org.springframework.scheduling.annotation
Classes in org.springframework.scheduling.annotation that implement SmartInstantiationAwareBeanPostProcessorModifier 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 SmartInstantiationAwareBeanPostProcessor in org.springframework.scripting.support
Classes in org.springframework.scripting.support that implement SmartInstantiationAwareBeanPostProcessorModifier and TypeClassDescriptionclassBeanPostProcessorthat handlesScriptFactorydefinitions, replacing each factory with the actual scripted Java object generated by it. -
Uses of SmartInstantiationAwareBeanPostProcessor in org.springframework.validation.beanvalidation
Classes in org.springframework.validation.beanvalidation that implement SmartInstantiationAwareBeanPostProcessorModifier and TypeClassDescriptionclassA convenientBeanPostProcessorimplementation that delegates to a JSR-303 provider for performing method-level validation on annotated methods.