Uses of Interface
org.springframework.beans.factory.config.BeanPostProcessor
Packages that use BeanPostProcessor
Package
Description
Support package for annotation-driven bean configuration.
SPI interfaces and configuration-related convenience classes for bean factories.
Classes supporting the
org.springframework.beans.factory package.-
Uses of BeanPostProcessor in org.springframework.beans.factory.annotation
Classes in org.springframework.beans.factory.annotation that implement BeanPostProcessorModifier and TypeClassDescriptionclassBeanPostProcessorimplementation that autowires annotated fields, setter methods, and arbitrary config methods.classBeanPostProcessorimplementation that invokes annotated init and destroy methods. -
Uses of BeanPostProcessor in org.springframework.beans.factory.config
Subinterfaces of BeanPostProcessor in org.springframework.beans.factory.configModifier and TypeInterfaceDescriptioninterfaceSubinterface ofBeanPostProcessorthat adds a before-destruction callback.interfaceSubinterface ofBeanPostProcessorthat adds a before-instantiation callback, and a callback after instantiation but before explicit properties are set or autowiring occurs.interfaceExtension of theInstantiationAwareBeanPostProcessorinterface, adding a callback for predicting the eventual type of a processed bean.Methods in org.springframework.beans.factory.config with parameters of type BeanPostProcessorModifier and TypeMethodDescriptionvoidConfigurableBeanFactory.addBeanPostProcessor(BeanPostProcessor beanPostProcessor) Add a new BeanPostProcessor that will get applied to beans created by this factory. -
Uses of BeanPostProcessor in org.springframework.beans.factory.support
Subinterfaces of BeanPostProcessor in org.springframework.beans.factory.supportModifier and TypeInterfaceDescriptioninterfacePost-processor callback interface for merged bean definitions at runtime.Methods in org.springframework.beans.factory.support that return types with arguments of type BeanPostProcessorModifier and TypeMethodDescriptionAbstractBeanFactory.getBeanPostProcessors()Return the list of BeanPostProcessors that will get applied to beans created with this factory.Methods in org.springframework.beans.factory.support with parameters of type BeanPostProcessorModifier and TypeMethodDescriptionvoidAbstractBeanFactory.addBeanPostProcessor(BeanPostProcessor beanPostProcessor) Method parameters in org.springframework.beans.factory.support with type arguments of type BeanPostProcessorModifier and TypeMethodDescriptionvoidAbstractBeanFactory.addBeanPostProcessors(Collection<? extends BeanPostProcessor> beanPostProcessors) Add new BeanPostProcessors that will get applied to beans created by this factory.