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 eu.artofcoding.beetlejuice.spring.Slf4jPostProcessor.java

public class Slf4jPostProcessor implements BeanPostProcessor {

    private static final Logger logger = LoggerFactory.getLogger(Slf4jPostProcessor.class);

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

From source file com.github.jiahut.demo.utils.LoggerPostProcessor.java

/**
 *  Inject logger bean processor in Spring IoC
 * @author jiahut
 *
 */

From source file com.scf.core.context.spring.InjectAopSelfBeanProcessor.java

/**
 * ? ??
 * @author wubin
 */
public class InjectAopSelfBeanProcessor implements BeanPostProcessor, ApplicationContextAware {

From source file com.qpark.eip.core.spring.HibernateMBeanExporter.java

/**
 * @author bhausen
 */
public class HibernateMBeanExporter extends MBeanExporter implements BeanPostProcessor {

    /**

From source file org.dspace.servicemanager.spring.DSpaceBeanPostProcessor.java

/**
 * This processes beans as they are loaded into the system by spring.
 * Allows us to handle the init method and also push config options.
 * 
 * @author Aaron Zeckoski (azeckoski @ gmail.com)
 */

From source file com.inspiresoftware.lib.dto.geda.interceptor.impl.GeDABootstrapAdvicePostProcessor.java

/**
 * This post processor will scan the methods annotated with {@link com.inspiresoftware.lib.dto.geda.annotations.Transferable}
 * on beans in order to white-list methods to be used for advice.
 * <p/>
 * User: denispavlov
 * Date: Jan 27, 2012

From source file com.dianping.simple.spring.TestBeanPostProcessor.java

/**
 * TODO Comment of TestBeanPostProcessor
 * 
 * @author wenwei.li
 * 
 */

From source file org.carewebframework.cal.ui.patientselection.PatientSelectorRegistry.java

/**
 * Registry for patient selectors.
 */
public class PatientSelectorRegistry extends AbstractRegistry<String, IPatientSelectorFactory>
        implements BeanPostProcessor {

From source file org.web4thejob.security.AuthorizationBeanPostProcessor.java

/**
 * <p>Marker interface for {@link BeanPostProcessor} instances that enforce authorization policies.</p>
 *
 * @author Veniamin Isaias
 * @since 1.0.0
 */

From source file com.bstek.dorado.config.xml.ObjectParsersInitializer.java

/**
 * @author Benny Bao (mailto:benny.bao@bstek.com)
 * @since 2011-11-23
 */
public class ObjectParsersInitializer extends EngineStartupListener implements BeanPostProcessor {
    private static Log logger = LogFactory.getLog(ObjectParsersInitializer.class);