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.utest.domain.service.impl.DomainServiceBeanPostProcessor.java

/**
 * A <code>BeanPostProcessor</code> that will process special configurations for
 * our domain service beans. For example, loading static data after the bean is
 * instantiated.
 */
public class DomainServiceBeanPostProcessor implements BeanPostProcessor, Ordered {

From source file almira.sample.util.LogPostProcessor.java

/**
 * Injects slf4J logger into Spring Beans with Log annotation.
 * See: http://www.javacodegeeks.com/2011/12/configure-logback-logging-with-spring.html
 */

@Component

From source file org.carewebframework.ui.icons.IconLibraryRegistry.java

/**
 * Registry for icon libraries. Will automatically registry icon library beans instantiated in the
 * root container.
 */
public class IconLibraryRegistry extends AbstractRegistry<String, IIconLibrary> implements BeanPostProcessor {

From source file com.shigengyu.common.springextension.SpringBeanSet.java

public abstract class SpringBeanSet<T> implements BeanPostProcessor {

    private final List<T> beans;

    private final Class<? extends T> clazz;

From source file org.craftercms.core.util.spring.AbstractBeanIdBasedRegistry.java

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanPostProcessor;

/**
 * Picks up any bean of a specific type defined in the Spring application context, and puts it in a registry, with the key or ID as the
 * name of the context bean except the a prefix, e.g. if a bean is named "crafter.contentStoreAdapter.filesystem", and the prefix is

From source file com.github.javarch.support.log.LoggingAnnotationBeanPostProcessor.java

/**
 * http://www.rimple.com/tech/2011/2/21/spring-corner-what-are-those-post-processor-beans-anyway.html
 * 
 * @author Lucas Oliveira <luksrn@gmail.com>
 *
 */

From source file com.precioustech.fxtrading.tradingbot.spring.FindEventBusSubscribers.java

public class FindEventBusSubscribers implements BeanPostProcessor {

    @Autowired
    private EventBus eventBus;
    private static final Logger LOG = Logger.getLogger(FindEventBusSubscribers.class);

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

class HealthCheckBeanPostProcessor implements BeanPostProcessor, Ordered {

    private static final Logger LOG = LoggerFactory.getLogger(HealthCheckBeanPostProcessor.class);

    private final HealthCheckRegistry healthChecks;

From source file com.stormpath.shiro.spring.config.ShiroEventBusBeanPostProcessor.java

public class ShiroEventBusBeanPostProcessor implements BeanPostProcessor {

    final private EventBus eventBus;

    public ShiroEventBusBeanPostProcessor(EventBus eventBus) {
        this.eventBus = eventBus;

From source file at.ac.univie.isc.asio.spring.EventBusAutoRegistrar.java

/**
 * Pass all beans to the configured {@link com.google.common.eventbus.EventBus} for registration.
 */
public final class EventBusAutoRegistrar implements BeanPostProcessor {
    private static final Logger log = getLogger(EventBusAutoRegistrar.class);