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 fr.putnami.pwt.plugin.spring.web.filter.DelegatingChainFilter.java

public class DelegatingChainFilter extends GenericFilterBean implements BeanPostProcessor {

    private final List<Filter> filters = Lists.newArrayList();

    @Autowired
    private WebApplicationContext webApplicationContext;

From source file com.gwtplatform.dispatch.server.spring.AnnotatedActionBeandHandlerRegistrator.java

/**
 * Annotation bean post processing to register ActionHadlers annotate
 * with {@link com.gwtplatform.dispatch.server.spring.annotation.RegisterActionHandler}.
 *
 * @deprecated Please use {@link com.gwtplatform.dispatch.rpc.server.spring.AnnotatedActionBeandHandlerRegistrator}.
 */

From source file demo.lifecycle.SmartLifecycleRegistry.java

/**
 * @author Dave Syer
 *
 */
@Component
public class SmartLifecycleRegistry implements BeanFactoryAware, BeanPostProcessor {

From source file com.evolveum.midpoint.repo.sql.testing.TestSqlRepositoryBeanPostProcessor.java

/**
 * @author lazyman
 */
public class TestSqlRepositoryBeanPostProcessor implements BeanPostProcessor, ApplicationContextAware {

    private static final Trace LOGGER = TraceManager.getTrace(TestSqlRepositoryBeanPostProcessor.class);

From source file com.cfitzarl.cfjwed.core.config.ModelMapperRegister.java

@Configuration
public class ModelMapperRegister implements BeanPostProcessor {

    @Autowired
    private ModelMapper modelMapper;

From source file com.gwtplatform.dispatch.rpc.server.spring.AnnotatedActionBeanHandlerRegistrator.java

/**
 * Annotation bean post processing to register {@link ActionHandler}s annotated with {@link RegisterActionHandler}.
 */
public class AnnotatedActionBeanHandlerRegistrator implements BeanPostProcessor, Ordered {
    @Autowired
    protected ApplicationContext applicationContext;

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

/**
 * The CacheableAnnotationDynamicRegionCreationBeanPostProcessor class is a Spring BeanPostProcessor processing Spring beans
 * and application components on startup that are annotated with @Cacheable in order to dynamically create
 * GemFire Regions corresponding for the target "cache" identified in @Cacheable.
 *
 * @author John Blum

From source file com.gwtplatform.dispatch.rpc.server.spring.AnnotatedActionBeandHandlerRegistrator.java

/**
 * Annotation bean post processing to register {@link ActionHandler}s annotated with {@link RegisterActionHandler}.
 */
public class AnnotatedActionBeandHandlerRegistrator implements BeanPostProcessor, Ordered {
    @Autowired
    protected ApplicationContext applicationContext;

From source file org.netxilia.spi.impl.formula.function.FunctionRegistry.java

/**
 * Provides registry facilities for existing functions.
 * 
 * @author catac
 * @since Nov 19, 2009
 */

From source file com.github.tddts.jet.config.spring.postprocessor.MessageAnnotationBeanPostProcessor.java

/**
 * {@code MessageAnnotationBeanPostProcessor} is a {@link BeanPostProcessor} that inserts messages to fields and methods
 * of processed beans which are marked by {@link Message} annotation.
 *
 * @author Tigran_Dadaiants dtkcommon@gmail.com
 */