| Package | Description | 
|---|---|
| org.springframework.beans.factory.config | SPI interfaces and configuration-related convenience classes for bean factories. | 
| org.springframework.beans.factory.serviceloader | Support package for the Java 6 ServiceLoader facility. | 
| org.springframework.beans.factory.wiring | Mechanism to determine bean wiring metadata from a bean instance. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | AbstractFactoryBean<T>Simple template superclass for  FactoryBeanimplementations that
 creates a singleton or a prototype object, depending on a flag. | 
| class  | FieldRetrievingFactoryBeanFactoryBeanwhich retrieves a static or non-static field value. | 
| class  | ListFactoryBeanSimple factory for shared List instances. | 
| class  | MapFactoryBeanSimple factory for shared Map instances. | 
| class  | MethodInvokingBeanSimple method invoker bean: just invoking a target method, not expecting a result
 to expose to the container (in contrast to  MethodInvokingFactoryBean). | 
| class  | MethodInvokingFactoryBeanFactoryBeanwhich returns a value which is the result of a static or instance
 method invocation. | 
| class  | ObjectFactoryCreatingFactoryBeanA  FactoryBeanimplementation that
 returns a value which is anObjectFactorythat in turn returns a bean sourced from aBeanFactory. | 
| class  | PreferencesPlaceholderConfigurerDeprecated. 
 as of 5.2, along with  PropertyPlaceholderConfigurer | 
| class  | PropertiesFactoryBeanAllows for making a properties file from a classpath location available
 as Properties instance in a bean factory. | 
| class  | ProviderCreatingFactoryBeanA  FactoryBeanimplementation that
 returns a value which is a JSR-330Providerthat in turn
 returns a bean sourced from aBeanFactory. | 
| class  | ServiceLocatorFactoryBeanA  FactoryBeanimplementation that takes an interface which must have one or more
 methods with the signaturesMyType xxx()orMyType xxx(MyIdType id)(typically,MyService getService()orMyService getService(String id))
 and creates a dynamic proxy which implements that interface, delegating to an
 underlyingBeanFactory. | 
| class  | SetFactoryBeanSimple factory for shared Set instances. | 
| class  | YamlMapFactoryBeanFactory for a  Mapthat reads from a YAML source, preserving the
 YAML-declared value types and their structure. | 
| class  | YamlPropertiesFactoryBeanFactory for  Propertiesthat reads from a YAML source,
 exposing a flat structure of String property values. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | AbstractServiceLoaderBasedFactoryBeanAbstract base class for FactoryBeans operating on the
 JDK 1.6  ServiceLoaderfacility. | 
| class  | ServiceFactoryBeanFactoryBeanthat exposes the
 'primary' service for the configured service class, obtained through
 the JDK 1.6ServiceLoaderfacility. | 
| class  | ServiceListFactoryBeanFactoryBeanthat exposes all
 services for the configured service class, represented as a List of service objects,
 obtained through the JDK 1.6ServiceLoaderfacility. | 
| class  | ServiceLoaderFactoryBeanFactoryBeanthat exposes the
 JDK 1.6ServiceLoaderfor the configured service class. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | BeanConfigurerSupportConvenient base class for bean configurers that can perform Dependency Injection
 on objects (however they may be created). |