Uses of Interface
org.springframework.beans.factory.config.BeanFactoryPostProcessor
Package
Description
Support package for annotation-driven bean configuration.
SPI interfaces and configuration-related convenience classes for bean factories.
Support for generating code that represents the state of a bean factory.
Classes supporting the
org.springframework.beans.factory
package.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.
Annotation support for the Application Context, including JSR-250 "common"
annotations, component-scanning, and Java-based metadata for creating
Spring-managed objects.
Support classes for application events, like standard context events.
Classes supporting the org.springframework.context package,
such as abstract base classes for ApplicationContext
implementations and a MessageSource implementation.
Load-time weaving support for a Spring application context, building on Spring's
LoadTimeWeaver
abstraction.-
Uses of BeanFactoryPostProcessor in org.springframework.beans.factory.annotation
Modifier and TypeClassDescriptionclass
ABeanFactoryPostProcessor
implementation that allows for convenient registration of custom autowire qualifier types. -
Uses of BeanFactoryPostProcessor in org.springframework.beans.factory.config
Modifier and TypeClassDescriptionclass
BeanFactoryPostProcessor
implementation that allows for convenient registration of customproperty editors
.class
SimpleBeanFactoryPostProcessor
implementation that registers customScope(s)
with the containingConfigurableBeanFactory
.class
Bean factory post processor that logs a warning for@Deprecated
beans.class
Abstract base class for property resource configurers that resolve placeholders in bean definition property values.class
Deprecated.class
Property resource configurer that overrides bean property values in an application context definition.class
Deprecated.as of 5.2; useorg.springframework.context.support.PropertySourcesPlaceholderConfigurer
instead which is more flexible through taking advantage of theEnvironment
andPropertySource
mechanisms.class
Allows for configuration of individual bean property values from a property resource, i.e. -
Uses of BeanFactoryPostProcessor in org.springframework.beans.factory.generator
Modifier and TypeInterfaceDescriptioninterface
Specialization ofBeanFactoryPostProcessor
that contributes bean factory optimizations ahead of time, using generated code that replaces runtime behavior. -
Uses of BeanFactoryPostProcessor in org.springframework.beans.factory.support
Modifier and TypeInterfaceDescriptioninterface
Extension to the standardBeanFactoryPostProcessor
SPI, allowing for the registration of further bean definitions before regular BeanFactoryPostProcessor detection kicks in. -
Uses of BeanFactoryPostProcessor in org.springframework.context
Modifier and TypeMethodDescriptionvoid
ConfigurableApplicationContext.addBeanFactoryPostProcessor
(BeanFactoryPostProcessor postProcessor) Add a new BeanFactoryPostProcessor that will get applied to the internal bean factory of this application context on refresh, before any of the bean definitions get evaluated. -
Uses of BeanFactoryPostProcessor in org.springframework.context.annotation
Modifier and TypeClassDescriptionclass
BeanFactoryPostProcessor
used for bootstrapping processing of@Configuration
classes. -
Uses of BeanFactoryPostProcessor in org.springframework.context.event
Modifier and TypeClassDescriptionclass
RegistersEventListener
methods as individualApplicationListener
instances. -
Uses of BeanFactoryPostProcessor in org.springframework.context.support
Modifier and TypeClassDescriptionclass
Specialization ofPlaceholderConfigurerSupport
that resolves ${...} placeholders within bean definition property values and@Value
annotations against the current SpringEnvironment
and its set ofPropertySources
.Modifier and TypeMethodDescriptionAbstractApplicationContext.getBeanFactoryPostProcessors()
Return the list of BeanFactoryPostProcessors that will get applied to the internal BeanFactory.Modifier and TypeMethodDescriptionvoid
AbstractApplicationContext.addBeanFactoryPostProcessor
(BeanFactoryPostProcessor postProcessor) -
Uses of BeanFactoryPostProcessor in org.springframework.context.weaving
Modifier and TypeClassDescriptionclass
Post-processor that registers AspectJ'sClassPreProcessorAgentAdapter
with the Spring application context's defaultLoadTimeWeaver
.
PropertyPlaceholderConfigurer