Example usage for org.springframework.context.support PostProcessorRegistrationDelegate registerBeanPostProcessors

List of usage examples for org.springframework.context.support PostProcessorRegistrationDelegate registerBeanPostProcessors

Introduction

In this page you can find the example usage for org.springframework.context.support PostProcessorRegistrationDelegate registerBeanPostProcessors.

Prototype

private static void registerBeanPostProcessors(ConfigurableListableBeanFactory beanFactory,
        List<BeanPostProcessor> postProcessors) 

Source Link

Document

Register the given BeanPostProcessor beans.

Usage

From source file:org.springframework.context.support.AbstractApplicationContext.java

/**
 * Instantiate and invoke all registered BeanPostProcessor beans,
 * respecting explicit order if given./*from   w w w .ja v a  2 s  .c  om*/
 * <p>Must be called before any instantiation of application beans.
 */
protected void registerBeanPostProcessors(ConfigurableListableBeanFactory beanFactory) {
    PostProcessorRegistrationDelegate.registerBeanPostProcessors(beanFactory, this);
}