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.spearal.spring.rest.SpearalRestConfigurator.java

/**
 * Spring bean postprocessor to configure the SpearalFactory
 * 
 * @author William DRAI
 */
public class SpearalRestConfigurator implements BeanPostProcessor, ApplicationContextAware {

From source file org.spearal.spring.jpa.SpearalJpaConfigurator.java

/**
 * Spearal bean postprocessor to configure and wrap the EntityManagerFactory
 * 
 * @author William DRAI
 */
public class SpearalJpaConfigurator implements BeanPostProcessor, ApplicationContextAware {

From source file org.xmatthew.spy2servers.config.ComponentPostProcessor.java

/**
 * @author XieMaLin
 *
 */
public class ComponentPostProcessor implements BeanPostProcessor {

From source file org.springframework.cloud.sleuth.instrument.zuul.TraceZuulHandlerMappingBeanPostProcessor.java

/**
 * Bean post processor that wraps {@link ZuulHandlerMapping} in its
 * trace representation.
 *
 * @author Marcin Grzejszczak
 * @since 1.0.3

From source file nats.client.spring.AnnotationConfigBeanPostProcessor.java

/**
 * @author Mike Heath <elcapo@gmail.com>
 */
public class AnnotationConfigBeanPostProcessor implements BeanPostProcessor {

    private final Nats nats;

From source file org.zalando.stups.boot.eventbus.EventBusSubscriberBeanPostProcessor.java

/**
 * @author  jbellmann
 */
public class EventBusSubscriberBeanPostProcessor implements BeanPostProcessor {

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

From source file it.cosenonjaviste.alfresco.annotations.processors.runtime.ModuleComponentConfigurer.java

/**
 * <tt>BeanPostProcessor</tt> for {@link ModuleComponent} annotation.
 *
 * @author Andrea Como
 */
@Component

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

/**
 * {@code EventBusBeanPostProcessor} is {@link BeanPostProcessor} that registers beans to {@link EventBus} if they
 * have methods marked with {@link Subscribe} annotation.
 *
 * @author Tigran_Dadaiants dtkcommon@gmail.com
 */

From source file org.springframework.boot.actuate.autoconfigure.metrics.jdbc.HikariDataSourceMetricsPostProcessor.java

/**
 * {@link BeanPostProcessor} that configures Hikari metrics. Such arrangement is necessary
 * because a {@link HikariDataSource} instance cannot be modified once its configuration
 * has completed.
 *
 * @author Stephane Nicoll

From source file com.alfresco.orm.repository.RepositoryBeanPostProcessor.java

public class RepositoryBeanPostProcessor implements BeanPostProcessor {
    final Logger logger = LoggerFactory.getLogger(RepositoryBeanPostProcessor.class);

    public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
        Class clazz = bean.getClass();
        List<Method> repositoryMethod = ReflectionUtil.setterMethodForAnnotation(clazz,