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.flex.hibernate4.config.HibernateSerializationConfigPostProcessor.java

/**
 * {@link BeanFactoryPostProcessor} that will automatically configure Hibernate AMF serialization support if:
 * <ol>
 *     <li>Hibernate is detected on the classpath</li>
 *     <li>An instance of {@link HibernateConfigProcessor} has not been manually configured.
 * </ol>

From source file org.springframework.flex.config.HibernateSerializationConfigPostProcessor.java

/**
 * {@link BeanFactoryPostProcessor} that will automatically configure Hibernate AMF serialization support if:
 * <ol>
 *     <li>Hibernate is detected on the classpath</li>
 *     <li>An instance of {@link HibernateConfigProcessor} has not been manually configured.
 * </ol>

From source file com.predic8.membrane.core.DefaultConfig.java

@MCElement(name = "defaultConfig")
public class DefaultConfig implements BeanFactoryPostProcessor, Ordered {

    private int order = 100; // the order in which BeanFactoryPostProcessors get executed

    public void setOrder(int order) {

From source file com.devbury.desktoplib.spring.LogFilterPropertyPlaceholderConfigurer.java

public class LogFilterPropertyPlaceholderConfigurer implements BeanFactoryPostProcessor, BeanNameAware {

    protected List<String> filters = new LinkedList<String>();
    protected String requiredPrefix = "${";
    protected String optionalPrefix = "${opt:";
    protected String defaultPrefix = "${default:";

From source file com.mmnaseri.dragonfly.runtime.session.impl.SessionPostProcessorHandler.java

/**
 * @author Milad Naseri (mmnaseri@programmer.net)
 * @since 1.0 (14/8/13 AD, 18:45)
 */
public class SessionPostProcessorHandler implements BeanFactoryPostProcessor, DatabaseDialectAware,
        EntityContextAware, StatementRegistryAware, TableMetadataRegistryAware {

From source file org.apache.james.container.spring.bean.factorypostprocessor.ConfigurationBeanFactoryPostProcessor.java

 * {@link BeanFactoryPostProcessor} which lookup the configuration file for the
 * configured beans and register the right class with the given beanname for it.
 * The class is lookup-ed via the class="" tag in the configuration file. The
 * lookup of the configuration file is done via the
 * {@link ConfigurationProvider#getConfiguration(String)} method. Which take the
 * beanname as argument

From source file com.laxser.blitz.lama.core.LamaDaoProcessor.java

/**
 * Jade???<br/>
 * ??jarclassesDAODAOspring
 * 
 * @author laxser  Date 2012-3-22 ?3:43:28
@contact [duqifan@gmail.com]

From source file com.wavemaker.runtime.data.cloudfoundry.CloudFoundryDataServiceBeanFactoryPostProcessor.java

/**
 * {@link BeanFactoryPostProcessor} implementation that replaces all local MySQL datasources with services provided by
 * CloudFoundry.
 * 
 * @author Jeremy Grelle
 */

From source file io.dohko.jdbi.spring.beans.factory.DBIRepositoryDefinitionBeanFactoryProcessor.java

/**
 * Dynamically creates a bean for each annotated type with {@link Repository}. The bean is created through the {@link JdbiRepositoryFactoryBean}
 * class, which has the dependency for the <em>dbi</em> bean. The dbi bean can be previously defined or, we can delegates its definition 
 * for the application. In this case, we only need to defined a {@link DataSource} bean.  
 * 
 * <p>As usual, the registered beans can be accessed by name or by type. In this case, the name is the simple type name starting with a lower case

From source file org.springframework.flex.config.RemotingAnnotationPostProcessor.java

/**
 * {@link BeanFactoryPostProcessor} implementation that searches the {@link BeanFactory} for beans annotated with
 * {@link RemotingDestination} and adds a corresponding {@link RemotingDestinationExporter} bean definition according to
 * the attributes of the {@link RemotingDestination} annotation and any methods found to be marked with either the
 * {@link RemotingInclude} or {@link RemotingExclude} annotation.
 *