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 io.gravitee.repository.jdbc.config.PropertySourceBeanProcessor.java

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

    private Environment environment;

From source file org.jacpfx.vertx.spring.SpringSingleVerticleConfiguration.java

/**
 * Removes all Spring verticles except the one that has been started.
 * This should avoid missconfigurations because all other spring verticles in the context are not started as a verticle.
 * Each spring verticle creates his own spring context and must be deployed on it's own.
 * Created by Andy Moncsek on 12.03.14.
 * @author Andy Moncsek

From source file de.axelfaust.alfresco.hackathon.cmisserver.repo.beans.BeanDefinitionRemovingFactoryPostProcessor.java

/**
 * This post processor is designed to allow us to remove a configurable list of beans that should not be instantiated in a reduced Alfresco
 * Repository.
 *
 * @author Axel Faust
 */

From source file com.dangdang.ddframe.reg.spring.namespace.SpringZookeeperRegistryCenter.java

/**
 * Spring?Zookeeper.
 * 
 * @author zhangliang
 */
public final class SpringZookeeperRegistryCenter extends ZookeeperRegistryCenter

From source file org.grails.webflow.scope.ScopeRegistrar.java

/**
 * Replaces Webflow ScopeRegistrar since we don't need to the RequestScope implementation of WebFlow.
 *
 * @author Graeme Rocher
 * @since 1.1
 */

From source file net.javacrumbs.springws.test.util.MockMessageSenderInjector.java

/**
 * Injects mock message senders into {@link WebServiceTemplate}.
 * @author Lukas Krecan
 *
 */
public class MockMessageSenderInjector implements BeanFactoryPostProcessor {

From source file org.joinfaces.annotations.JsfCdiToSpringBeanFactoryPostProcessor.java

/**
 * Add custom JSF CDI scope implementations. Picks up JSF and CDI annotations both on
 * types and method bean declarations.
 *
 * @author Marcelo Fernandes
 * @author Nurettin Yilmaz

From source file org.codehaus.groovy.grails.webflow.scope.ScopeRegistrar.java

/**
 * Replaces Webflow ScopeRegistrar since we don't need to the RequestScope implementation of WebFlow.
 *
 * @author Graeme Rocher
 * @since 1.1
 */

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

/**
 * BeanFactoryPostProcessor that can be used to replace beans that have been
 * defined elsewhere. Use this class when you want to write a Riot module that
 * needs to replace a bean which is provided by another module.
 * <p>Simply defining a bean with the same id would not work, because the order
 * in which the module configurations are processed is not defined.  

From source file com.payu.ratel.config.beans.RatelContextApplier.java

public class RatelContextApplier implements BeanFactoryPostProcessor {

    public static final String SERVICE_DISCOVERY_ENABLED = SERVICE_DISCOVERY + ".enabled";

    private final RegistryBeanProviderFactory registryBeanProviderFactory;
    private final ServiceRegisterPostProcessorFactory serviceRegisterPostProcessorFactory;