Uses of Class
org.springframework.aop.framework.ProxyConfig
Packages that use ProxyConfig Package Description org.springframework.aop.aspectj.annotation Classes enabling AspectJ 5 @Annotated classes to be used in Spring AOP.org.springframework.aop.aspectj.autoproxy Base classes enabling auto-proxying based on AspectJ.org.springframework.aop.framework Package containing Spring's basic AOP infrastructure, compliant with the AOP Alliance interfaces.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.aop.scope Support for AOP-based scoping of target objects, with configurable backend.org.springframework.cache.interceptor AOP-based solution for declarative caching demarcation.org.springframework.dao.annotation Annotation support for DAOs.org.springframework.scheduling.annotation Java 5 annotation for asynchronous method execution.org.springframework.transaction.interceptor AOP-based solution for declarative transaction demarcation.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 ProxyConfig in org.springframework.aop.aspectj.annotation
Subclasses of ProxyConfig in org.springframework.aop.aspectj.annotation Modifier and Type Class Description classAnnotationAwareAspectJAutoProxyCreatorAspectJAwareAdvisorAutoProxyCreatorsubclass that processes all AspectJ annotation aspects in the current application context, as well as Spring Advisors.classAspectJProxyFactoryAspectJ-based proxy factory, allowing for programmatic building of proxies which include AspectJ aspects (code style as well Java 5 annotation style).Uses of ProxyConfig in org.springframework.aop.aspectj.autoproxy
Subclasses of ProxyConfig in org.springframework.aop.aspectj.autoproxy Modifier and Type Class Description classAspectJAwareAdvisorAutoProxyCreatorAbstractAdvisorAutoProxyCreatorsubclass 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 ProxyConfig in org.springframework.aop.framework
Subclasses of ProxyConfig in org.springframework.aop.framework Modifier and Type Class Description classAbstractAdvisingBeanPostProcessorBase class forBeanPostProcessorimplementations that apply a Spring AOPAdvisorto specific beans.classAbstractSingletonProxyFactoryBeanConvenient superclass forFactoryBeantypes that produce singleton-scoped proxy objects.classAdvisedSupportBase class for AOP proxy configuration managers.classProxyCreatorSupportBase class for proxy factories.classProxyFactoryFactory for AOP proxies for programmatic use, rather than via declarative setup in a bean factory.classProxyFactoryBeanFactoryBeanimplementation that builds an AOP proxy based on beans in SpringBeanFactory.classProxyProcessorSupportBase class with common functionality for proxy processors, in particular ClassLoader management and theProxyProcessorSupport.evaluateProxyInterfaces(java.lang.Class<?>, org.springframework.aop.framework.ProxyFactory)algorithm.Methods in org.springframework.aop.framework with parameters of type ProxyConfig Modifier and Type Method Description voidProxyConfig. copyFrom(ProxyConfig other)Copy configuration from the other config object.Uses of ProxyConfig in org.springframework.aop.framework.autoproxy
Subclasses of ProxyConfig in org.springframework.aop.framework.autoproxy Modifier and Type Class Description classAbstractAdvisorAutoProxyCreatorGeneric auto proxy creator that builds AOP proxies for specific beans based on detected Advisors for each bean.classAbstractAutoProxyCreatorBeanPostProcessorimplementation that wraps each eligible bean with an AOP proxy, delegating to specified interceptors before invoking the bean itself.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).classBeanNameAutoProxyCreatorAuto proxy creator that identifies beans to proxy via a list of names.classDefaultAdvisorAutoProxyCreatorBeanPostProcessorimplementation that creates AOP proxies based on all candidateAdvisors in the currentBeanFactory.classInfrastructureAdvisorAutoProxyCreatorAuto-proxy creator that considers infrastructure Advisor beans only, ignoring any application-defined Advisors.Uses of ProxyConfig in org.springframework.aop.scope
Subclasses of ProxyConfig in org.springframework.aop.scope Modifier and Type Class Description classScopedProxyFactoryBeanConvenient proxy factory bean for scoped objects.Uses of ProxyConfig in org.springframework.cache.interceptor
Subclasses of ProxyConfig in org.springframework.cache.interceptor Modifier and Type Class Description classCacheProxyFactoryBeanProxy factory bean for simplified declarative caching handling.Uses of ProxyConfig in org.springframework.dao.annotation
Subclasses of ProxyConfig 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 ProxyConfig in org.springframework.scheduling.annotation
Subclasses of ProxyConfig 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 ProxyConfig in org.springframework.transaction.interceptor
Subclasses of ProxyConfig in org.springframework.transaction.interceptor Modifier and Type Class Description classTransactionProxyFactoryBeanProxy factory bean for simplified declarative transaction handling.Uses of ProxyConfig in org.springframework.validation.beanvalidation
Subclasses of ProxyConfig 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.