public interface

BeanDefinitionRegistryPostProcessor

implements BeanFactoryPostProcessor
org.springframework.beans.factory.support.BeanDefinitionRegistryPostProcessor
Known Indirect Subclasses

Class Overview

Extension to the standard BeanFactoryPostProcessor SPI, allowing for the registration of further bean definitions before regular BeanFactoryPostProcessor detection kicks in. In particular, BeanDefinitionRegistryPostProcessor may register further bean definitions which in turn define BeanFactoryPostProcessor instances.

Summary

Public Methods
abstract void postProcessBeanDefinitionRegistry(BeanDefinitionRegistry registry)
Modify the application context's internal bean definition registry after its standard initialization.
[Expand]
Inherited Methods
From interface org.springframework.beans.factory.config.BeanFactoryPostProcessor

Public Methods

public abstract void postProcessBeanDefinitionRegistry (BeanDefinitionRegistry registry)

Also: SpringBeans

Modify the application context's internal bean definition registry after its standard initialization. All regular bean definitions will have been loaded, but no beans will have been instantiated yet. This allows for adding further bean definitions before the next post-processing phase kicks in.

Parameters
registry the bean definition registry used by the application context
Throws
BeansException in case of errors