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

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

Introduction

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

Usage

From source file org.spring.data.gemfire.config.DiskStoreBeanPostProcessor.java

/**
 * The DiskStoreBeanPostProcessor class post processes any GemFire Disk Store Spring beans in the application context
 * to ensure that the Disk Store directory (disk-dir) actually exists before creating the Disk Store.
 *
 * @author John Blum
 * @see org.springframework.beans.factory.config.BeanPostProcessor

From source file org.springframework.data.gemfire.test.GemfireTestBeanPostProcessor.java

/**
 * @author David Turanski
 * @author John Blum
 */
public class GemfireTestBeanPostProcessor implements BeanPostProcessor {

From source file it.geosolutions.opensdi.config.GeoBatchRunInfoPostProcessor.java

/**
 * GeoBatchRunInformation post processor interface.
 * 
 * @author adiaz
 * @see GeoBatchClient
 */

From source file com.jappstart.service.auth.UserPassAuthFilterBeanPostProcessor.java

/**
 * The username password authentication filter bean post processor
 * implementation.
 */
@Service
public class UserPassAuthFilterBeanPostProcessor implements BeanPostProcessor {

From source file org.smigo.config.MvcConfigurationPostProcessor.java

/**
 * Copypasta from a link at page http://stackoverflow.com/questions/15912329
 */
@Component
public class MvcConfigurationPostProcessor implements BeanPostProcessor, PriorityOrdered {

From source file org.n52.iceland.config.spring.ConfiguringBeanPostProcessor.java

/**
 * Bean post processor, that
 * {@linkplain SettingsService#configure(java.lang.Object) configures} beans
 * using a {@link SettingsService} bean. Configuration takes place after all
 * dependencies are injected, but before any initialization methods are called.
 *

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

public class ManagedConnectionFactoryPostProcessor implements BeanPostProcessor {

    public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
        return bean;
    }

From source file org.spring.data.gemfire.config.ForceGemFireSubRegionCreationBeanPostProcessor.java

/**
 * The ForceGemFireRegionCreationBeanPostProcessor class...
 *
 * @author John Blum
 * @see org.springframework.beans.factory.InitializingBean
 * @see org.springframework.beans.factory.config.BeanPostProcessor

From source file com.art4ul.jcoon.bean.RestClientAnnotationBeanPostProcessor.java

public class RestClientAnnotationBeanPostProcessor implements BeanPostProcessor {

    private final RestTemplate restTemplate;

    public RestClientAnnotationBeanPostProcessor() {
        this.restTemplate = new RestTemplate();

From source file com.integralblue.log4jdbc.spring.Log4jdbcBeanPostProcessor.java

/**
 * A {@link BeanPostProcessor} implementation that sets up log4jdbc logging.
 * To do so, it:
 * <ul>
 * <li>Copies log4jdbc configuration properties from the Spring {@link Environment} to system properties (log4jdbc only reads system properties)</li>
 * <li>Wraps {@link DataSource} beans with {@link DataSourceSpy}</li>