The Spring Framework

Package org.springframework.beans.factory.support

Classes supporting the org.springframework.beans.factory package.

See:
          Description

Interface Summary
BeanDefinitionReader Simple interface for bean definition readers.
BeanDefinitionRegistry Interface for registries that hold bean definitions, for example RootBeanDefinition and ChildBeanDefinition instances.
InstantiationStrategy Interface responsible for creating instances corresponding to a root bean definition.
MethodReplacer Interface to be implemented by classes that can reimplement any method on an IoC-managed object: the Method Injection form of Dependency Injection.
 

Class Summary
AbstractAutowireCapableBeanFactory Abstract BeanFactory superclass that implements default bean creation, with the full capabilities specified by the RootBeanDefinition class.
AbstractBeanDefinition Base class for bean definition objects, factoring out common properties of RootBeanDefinition and ChildBeanDefinition.
AbstractBeanDefinitionReader Abstract base class for bean definition readers which implement the BeanDefinitionReader interface.
AbstractBeanFactory Abstract superclass for BeanFactory implementations, implementing the ConfigurableBeanFactory SPI interface.
AutowireUtils Utility class that contains various methods useful for the implementation of autowire-capable bean factories.
BeanDefinitionBuilder Programmatic means of constructing BeanDefinitions using the builder pattern.
BeanDefinitionReaderUtils Utility methods that are useful for bean definition reader implementations.
BeanDefinitionValueResolver Helper class for use by BeanFactory implementations, resolving values contained in BeanDefinition objects into the actual values applied to the target bean instance.
CglibSubclassingInstantiationStrategy Default object instantiation strategy for use in BeanFactories.
ChildBeanDefinition Bean definition for beans who inherit settings from their parent.
ConstructorResolver Helper class for resolving constructors and factory methods.
DefaultListableBeanFactory Default implementation of the ListableBeanFactory and BeanDefinitionRegistry interfaces: a full-fledged bean factory based on bean definitions.
DefaultSingletonBeanRegistry Generic registry for shared bean instances.
DisposableBeanAdapter Adapter that implements the DisposableBean interface performing various destruction steps on a given bean instance: DestructionAwareBeanPostProcessors the bean implementing DisposableBean itself a custom destroy method specified on the bean definition
LookupOverride Represents an override of a method that looks up an object in the same IoC context.
ManagedList Tag subclass used to hold managed List elements, which may include runtime bean references.
ManagedMap Tag collection class used to hold managed Map values, which may include runtime bean references.
ManagedProperties Represents a Spring-managed Properties instance that supports merging of parent/child definitions.
ManagedSet Tag collection class used to hold managed Set values, which may include runtime bean references.
MethodOverride Object representing the override of a method on a managed object by the IoC container.
MethodOverrides Set of method overrides, determining which, if any, methods on a managed object the Spring IoC container will override at runtime.
PropertiesBeanDefinitionReader Bean definition reader for a simple properties format.
ReplaceOverride Extension of MethodOverride that represents an arbitrary override of a method by the IoC container.
RootBeanDefinition Root bean definitions are the most common type of bean definition.
SimpleInstantiationStrategy Simple object instantiation strategy for use in a BeanFactory.
StaticListableBeanFactory Static factory that allows to register existing singleton instances programmatically.
 

Exception Summary
BeanDefinitionValidationException Exception thrown when the validation of a bean definition failed.
 

Package org.springframework.beans.factory.support Description

Classes supporting the org.springframework.beans.factory package. Contains abstract base classes for BeanFactory implementations.


The Spring Framework

Copyright © 2002-2006 The Spring Framework.