Package 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.

See:
          Description

Interface Summary
TargetSourceCreator Implementations can create special target sources, such as pooling target sources, for particular beans.
 

Class Summary
AbstractAdvisorAutoProxyCreator Abstract BeanPostProcessor implementation that creates AOP proxies.
AbstractAutoProxyCreator BeanPostProcessor implementation that wraps a group of beans with AOP proxies that delegate to the given interceptors before invoking the bean itself.
AdvisorAutoProxyCreator BeanPostProcessor implementation that creates AOP proxies based on all candidate Advisors in the current BeanFactory.
BeanNameAutoProxyCreator Auto proxy creator that identifies beans to proxy via a list of names.
 

Package org.springframework.aop.framework.autoproxy Description

Bean post processors for use in ApplicationContexts to simplify AOP usage by automatically creating AOP proxies without the need to use a ProxyFactoryBean.
The various post processors in this package need only be added to an ApplicationContext-- typically in an XML bean definition document--to automatically proxy selected beans.
NB: autoproxying is not supported for BeanFactory implementations, as post-processing is automatic only for application contexts.



Copyright (C) 2003-2004 The Spring Framework Project.