Uses of Interface
org.springframework.beans.factory.config.BeanPostProcessor

Packages that use BeanPostProcessor
org.springframework.aop.framework.adapter SPI package allowing Spring AOP framework to handle arbitrary advice types. 
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.beans.factory.config SPI interfaces and configuration-related convenience classes for bean factories. 
org.springframework.beans.factory.support Classes supporting the org.springframework.beans.factory package. 
org.springframework.context.support Classes supporting the org.springframework.context package, such as abstract base classes for ApplicationContext implementations and a MessageSource implementation. 
org.springframework.web.context.support Classes supporting the org.springframework.web.context package, such as WebApplicationContext implementations, and a utility class for retrieval of the root application context etc. 
 

Uses of BeanPostProcessor in org.springframework.aop.framework.adapter
 

Classes in org.springframework.aop.framework.adapter that implement BeanPostProcessor
 class AdvisorAdapterRegistrationManager
          BeanPostProcessor implementation that "registers" instances of any non-default AdvisorAdapters with GlobalAdvisorAdapterRegistry.
 

Uses of BeanPostProcessor in org.springframework.aop.framework.autoproxy
 

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

Uses of BeanPostProcessor in org.springframework.beans.factory.config
 

Methods in org.springframework.beans.factory.config with parameters of type BeanPostProcessor
 void ConfigurableBeanFactory.addBeanPostProcessor(BeanPostProcessor beanPostProcessor)
          Add a new BeanPostPrcoessor that will get applied to beans created with this factory.
 

Uses of BeanPostProcessor in org.springframework.beans.factory.support
 

Methods in org.springframework.beans.factory.support with parameters of type BeanPostProcessor
 void AbstractBeanFactory.addBeanPostProcessor(BeanPostProcessor beanPostProcessor)
           
 

Uses of BeanPostProcessor in org.springframework.context.support
 

Classes in org.springframework.context.support that implement BeanPostProcessor
 class ApplicationContextAwareProcessor
          BeanPostProcessor implementation that passes the application context to beans that implement the ApplicationContextAware or ResourceLoaderAware interfaces.
 

Uses of BeanPostProcessor in org.springframework.web.context.support
 

Classes in org.springframework.web.context.support that implement BeanPostProcessor
 class ServletContextAwareProcessor
          BeanPostProcessor implementation that passes the ServletContext to beans that implement the ApplicationContextAware or ResourceLoaderAware interfaces.
 



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