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 com.github.tddts.jet.config.spring.postprocessor.LoadContentAnnotationBeanPostProcessor.java

/**
 * {@code LoadContentAnnotationBeanPostProcessor} is a {@link BeanPostProcessor} that inserts content of files into
 * fields marked by {@link LoadContent} annotation presenting in processed beans.
 *
 * @author Tigran_Dadaiants dtkcommon@gmail.com
 */

From source file org.springframework.context.support.ApplicationContextAwareProcessor.java

/**
 * BeanPostProcessor implementation that passes the ApplicationContext to
 * beans that implement the ResourceLoaderAware, ApplicationEventPublisherAware,
 * MessageSourceAware and/or ApplicationContextAware interfaces.
 * If all of them are implemented, they are satisfied in the given order.
 *

From source file com.excilys.ebi.utils.spring.log.slf4j.InjectLoggerAnnotationBeanPostProcessor.java

/**
 * <p>
 * Injects loggers into new bean instances based on fields marked with
 * {@link InjectLogger} annotation.
 * </p>
 * <p>

From source file flex.contrib.factories.config.FlexAnnotationBeanPostProcessor.java

/**
 * {@link BeanPostProcessor} that creates Flex remoting destinations for beans
 * that are annotated with the {@link RemotingDestination} annotation. 
 * 
 * <p>This bean processor can only be used when the application context is 
 * loaded using the {@link ContextLoaderServlet}. The {@link MessageBrokerServlet} 

From source file de.systemoutprintln.util.logging.spring.LogPostProcessor.java

/**
 * BeanPostProcessor, that injects a slf4j Logger into a field annotated with
 * {@link Log}.
 * 
 * @author Benedikt Ritter
 * 

From source file hr.fer.zemris.vhdllab.platform.listener.AutoPublishListenerBeanPostProcessor.java

public class AutoPublishListenerBeanPostProcessor implements BeanPostProcessor {

    @Autowired
    private ApplicationContext context;

    @Override

From source file com.corundumstudio.socketio.annotation.SpringAnnotationScanner.java

public class SpringAnnotationScanner implements BeanPostProcessor {

    private final Logger log = LoggerFactory.getLogger(getClass());

    private final List<Class<? extends Annotation>> annotations = Arrays.asList(OnConnect.class, OnDisconnect.class,
            OnEvent.class);

From source file com.shigengyu.hyperion.core.WorkflowContextXmlSerializer.java

public class WorkflowContextXmlSerializer implements WorkflowContextSerializer, BeanPostProcessor {

    protected XStream xStream = new XStream(new DomDriver());

    private final String dateTimeFormat;

From source file com.db2eshop.governance.spring.ApplicationContextObserver.java

/**
 * <p>ApplicationContextObserver class.</p>
 *
 * @author Denis Neuling (denisneuling@gmail.com)
 * 
 */

From source file com.ryantenney.metrics.spring.AbstractAnnotationBeanPostProcessor.java

abstract class AbstractAnnotationBeanPostProcessor implements BeanPostProcessor {

    protected final Logger LOG = LoggerFactory.getLogger(getClass());

    public static enum Members {
        FIELDS, METHODS, ALL