The Spring Framework

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

Packages that use ConfigurableListableBeanFactory
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.beans.factory.xml Contains an abstract XML-based BeanFactory implementation, including a standard "spring-beans" DTD. 
org.springframework.context This package builds on the beans package to add support for message sources and for the Observer design pattern, and the ability for application objects to obtain resources using a consistent API. 
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 various utility classes. 
org.springframework.web.portlet.context Support for Spring's application context concept in a portlet environment, including ApplicationContext implementations and various utility classes. 
org.springframework.web.servlet.handler.metadata This package enables automatic web controller targeting. 
 

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

Methods in org.springframework.beans.factory.config with parameters of type ConfigurableListableBeanFactory
protected  void PropertyOverrideConfigurer.applyPropertyValue(ConfigurableListableBeanFactory factory, String beanName, String property, String value)
          Apply the given property value to the corresponding bean.
 void PropertyResourceConfigurer.postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory)
           
 void CustomScopeConfigurer.postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory)
           
 void CustomEditorConfigurer.postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory)
           
 void BeanFactoryPostProcessor.postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory)
          Modify the application context's internal bean factory after its standard initialization.
protected  void PropertyOverrideConfigurer.processKey(ConfigurableListableBeanFactory factory, String key, String value)
          Process the given key as 'beanName.property' entry.
protected  void PropertyPlaceholderConfigurer.processProperties(ConfigurableListableBeanFactory beanFactoryToProcess, Properties props)
           
protected abstract  void PropertyResourceConfigurer.processProperties(ConfigurableListableBeanFactory beanFactory, Properties props)
          Apply the given Properties to the bean factory.
protected  void PropertyOverrideConfigurer.processProperties(ConfigurableListableBeanFactory beanFactory, Properties props)
           
 

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

Classes in org.springframework.beans.factory.support that implement ConfigurableListableBeanFactory
 class DefaultListableBeanFactory
          Default implementation of the ListableBeanFactory and BeanDefinitionRegistry interfaces: a full-fledged bean factory based on bean definitions.
 

Uses of ConfigurableListableBeanFactory in org.springframework.beans.factory.xml
 

Classes in org.springframework.beans.factory.xml that implement ConfigurableListableBeanFactory
 class XmlBeanFactory
          Convenience extension of DefaultListableBeanFactory that reads bean definitions from an XML document.
 

Uses of ConfigurableListableBeanFactory in org.springframework.context
 

Methods in org.springframework.context that return ConfigurableListableBeanFactory
 ConfigurableListableBeanFactory ConfigurableApplicationContext.getBeanFactory()
          Return the internal bean factory of this application context.
 

Uses of ConfigurableListableBeanFactory in org.springframework.context.support
 

Methods in org.springframework.context.support that return ConfigurableListableBeanFactory
 ConfigurableListableBeanFactory GenericApplicationContext.getBeanFactory()
          Return the single internal BeanFactory held by this context.
 ConfigurableListableBeanFactory AbstractRefreshableApplicationContext.getBeanFactory()
           
abstract  ConfigurableListableBeanFactory AbstractApplicationContext.getBeanFactory()
          Subclasses must return their internal bean factory here.
 

Methods in org.springframework.context.support with parameters of type ConfigurableListableBeanFactory
protected  void AbstractApplicationContext.postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory)
          Modify the application context's internal bean factory after its standard initialization.
 

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

Methods in org.springframework.web.context.support with parameters of type ConfigurableListableBeanFactory
protected  void StaticWebApplicationContext.postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory)
          Register ServletContextAwareProcessor.
protected  void GenericWebApplicationContext.postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory)
          Register ServletContextAwareProcessor.
protected  void AbstractRefreshableWebApplicationContext.postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory)
          Register ServletContextAwareProcessor.
 

Uses of ConfigurableListableBeanFactory in org.springframework.web.portlet.context
 

Methods in org.springframework.web.portlet.context with parameters of type ConfigurableListableBeanFactory
protected  void StaticPortletApplicationContext.postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory)
          Register PortletContextAwareProcessor.
protected  void AbstractRefreshablePortletApplicationContext.postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory)
          Register PortletContextAwareProcessor.
 

Uses of ConfigurableListableBeanFactory in org.springframework.web.servlet.handler.metadata
 

Methods in org.springframework.web.servlet.handler.metadata with parameters of type ConfigurableListableBeanFactory
protected  void AbstractPathMapHandlerMapping.detectAndCreateHandlers(ConfigurableListableBeanFactory beanFactory)
          Look for all classes with a PathMap class attribute, instantiate them in the owning ApplicationContext, and register them as MVC handlers usable by the current DispatcherServlet.
 


The Spring Framework

Copyright © 2002-2006 The Spring Framework.