Example usage for org.springframework.beans.factory.config BeanFactoryPostProcessor interface-usage

List of usage examples for org.springframework.beans.factory.config BeanFactoryPostProcessor interface-usage

Introduction

In this page you can find the example usage for org.springframework.beans.factory.config BeanFactoryPostProcessor interface-usage.

Usage

From source file com.asual.summer.core.util.BeanUtils.java

/**
 * 
 * @author Rostislav Hristov
 *
 */
@Named

From source file com.art4ul.loadinstead.bean.LoadInsteadBeanFactoryPostProcessor.java

public class LoadInsteadBeanFactoryPostProcessor implements BeanFactoryPostProcessor {

    private List<String> loadInstedPacks;

    public LoadInsteadBeanFactoryPostProcessor(List<String> loadInstedPacks) {
        this.loadInstedPacks = loadInstedPacks;

From source file io.github.hzpz.spring.boot.autoconfigure.mongeez.DoNotExecuteMongeezPostProcessor.java

/**
 * Disables the initMethod of the {@link Mongeez} bean,
 * preventing Spring from actually trying to run Mongeez.
 */
@Component
public class DoNotExecuteMongeezPostProcessor implements BeanFactoryPostProcessor {

From source file io.gravitee.gateway.env.PropertySourceBeanProcessor.java

/**
 * @author David BRASSELY (brasseld at gmail.com)
 */
public class PropertySourceBeanProcessor implements BeanFactoryPostProcessor, Ordered {

    private Environment environment;

From source file org.springframework.beans.factory.config.DeprecatedBeanWarner.java

/**
 * Bean factory post processor that logs a warning for {@link Deprecated @Deprecated} beans.
 *
 * @author Arjen Poutsma
 * @since 3.0.3
 */

From source file org.jdal.mock.EasyMockReplacer.java

/**
 * A BeanFactoryPostProcessor that replaces configured interfaces with 
 * EasyMock Proxys for Testing.
 * 
 * @author Jose Luis Martin
 *

From source file org.openmrs.cwf.api.util.OpenMRSInit.java

/**
 * Class for initializing openMRS environment.
 */
public class OpenMRSInit implements ApplicationContextAware, BeanFactoryPostProcessor {

    private static final Log log = LogFactory.getLog(OpenMRSInit.class);

From source file com.apporiented.spring.override.ListMergeProcessor.java

/**
 * Bean factory post processor that handles merging of lists.
 * @author Felix Gnass [fgnass at neteye dot de]
 */
public class ListMergeProcessor implements BeanFactoryPostProcessor, PriorityOrdered {

From source file com.apporiented.spring.override.MapMergeProcessor.java

/**
 * Bean factory post processor that handles merging maps.
 * @author Felix Gnass [fgnass at neteye dot de]
 */
public class MapMergeProcessor implements BeanFactoryPostProcessor, PriorityOrdered {

From source file io.gravitee.management.rest.spring.PropertySourceBeanProcessor.java

/**
 * @author David BRASSELY (brasseld at gmail.com)
 */
public class PropertySourceBeanProcessor implements BeanFactoryPostProcessor, Ordered {

    private Environment environment;