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 org.springframework.richclient.application.ProgressMonitoringBeanFactoryPostProcessor.java

/**
 * A {@code BeanFactoryPostProcessor} that notifies a specified
 * {@link ProgressMonitor} of progress made while loading a bean factory.
 * 
 * <p>
 * The messages sent to the progress monitor can be internationalized by

From source file com.dianping.zebra.monitor.spring.DataSourceAutoMonitor.java

/**
 * springDataSourcemonitor?spring??? <bean class="com.dianping.zebra.monitor.spring.DataSourceAutoMonitor"/>
 *
 * @author danson.liu
 */
public class DataSourceAutoMonitor implements BeanFactoryPostProcessor, PriorityOrdered {

From source file alpha.portal.webapp.spring.ValidatorExtensionPostProcessor.java

/**
 * <p>
 * Adds commons validator configuration files to an existing Spring commons
 * Validator Factory bean, possibly defined within a seperate Spring
 * configuration file in a seperate jar file. By using this extension factory
 * developers can add validation configuration for their own persistent classes

From source file org.apache.servicemix.nmr.spring.BundleExtUrlPostProcessor.java

/**
 *
 */
public class BundleExtUrlPostProcessor
        implements BeanFactoryPostProcessor, Ordered, BundleContextAware, BeanNameAware, BeanFactoryAware {

From source file org.bytesoft.bytejta.supports.spring.TransactionEndpointPostProcessor.java

public class TransactionEndpointPostProcessor implements BeanFactoryPostProcessor, TransactionBeanFactoryAware {
    private TransactionBeanFactory beanFactory;

    public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
        ClassLoader cl = Thread.currentThread().getContextClassLoader();

From source file com.mmnaseri.dragonfly.runtime.assets.BeanDisposer.java

/**
 * @author Milad Naseri (mmnaseri@programmer.net)
 * @since 1.0 (2013/10/2, 21:19)
 */
public class BeanDisposer implements BeanNameAware, BeanFactoryPostProcessor, Ordered {

From source file org.bytesoft.bytetcc.supports.spring.CompensableEndpointPostProcessor.java

public class CompensableEndpointPostProcessor implements BeanFactoryPostProcessor, CompensableBeanFactoryAware {
    static final Logger logger = LoggerFactory.getLogger(CompensableEndpointPostProcessor.class);

    private CompensableBeanFactory beanFactory;

    public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {

From source file org.springframework.osgi.blueprint.container.support.internal.config.CycleOrderingProcessor.java

/**
 * Simple processor for sorting out cycles between beans. Inspects the construction relationship between beans to
 * provide hints to the container. Specifically, it forces the creation of any beans referred inside the construction
 * through the 'depends-on' attribute on the inspected bean.
 * 
 * @author Costin Leau

From source file org.ff4j.spring.placeholder.FF4jPropertiesPlaceHolderConfigurer.java

/**
 * PostProcessorFactory used to perform replacement of <em>@ff4jProperty{""}</em> in XML files by property value.
 * 
 * @author <a href="mailto:cedrick.lunven@gmail.com">Cedrick LUNVEN</a>
 */
public class FF4jPropertiesPlaceHolderConfigurer

From source file org.springframework.yarn.config.ConfiguringBeanFactoryPostProcessor.java

/**
 * Bean factory post processor which adds creates default task
 * scheduler and executor if necessary.
 *
 * @author Janne Valkealahti
 *