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.craftercms.engine.util.spring.mvc.AnnotationDrivenConfigCustomizer.java

import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping;

import java.util.ArrayList;
import java.util.List;

/**

From source file org.springbyexample.util.log.LoggerBeanPostProcessor.java

/**
 * <p>Injects loggers into new bean instances based on reflection.</p>
 * 
 * <p>Default logger factories configured are SLF4J, Apache Commons, 
 * Log4J, and JDK 1.4 Logging.</p>
 * 

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

class GaugeAnnotationBeanPostProcessor implements BeanPostProcessor, Ordered {

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

    private static final AnnotationFilter FILTER = new AnnotationFilter(Gauge.class);

From source file org.anyframe.iam.admin.common.web.JsonErrorAdvisingBeanPostProcessor.java

/**
 * Bean Post Processor to handle JsonError annotation
 * @author byounghoon.woo
 * 
 */
public class JsonErrorAdvisingBeanPostProcessor implements BeanPostProcessor, ApplicationContextAware {

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

/**
 * Bean post-processor that automatically applies security exception
 * translation to any bean that carries the
 * {@link flex.contrib.stereotypes.RemotingDestination} annotation,
 * adding a corresponding {@link SecurityExceptionTranslationAdvisor}
 * to the exposed proxy (either an existing AOP proxy or a newly generated

From source file com.eclecticlogic.pedal.dm.internal.DAORegistryImpl.java

public class DAORegistryImpl implements DAORegistry, BeanPostProcessor {

    private Transaction transaction;
    private EntityManagerFactory entityManagerFactory;
    private Map<Class<?>, DAO<? extends Serializable, ? extends Serializable>> daosByEntityClass = new HashMap<>();

From source file com.freiheit.fuava.ctprofiler.spring.ProfilingPostProcessor.java

/**
 * Ein Spring BeanPostProcessor, der all solche Beans mit profiling
 * versieht, die mindestens ein Interface implementieren, das auf
 * eines der angegebenen Patterns matched.
 *
 * @author Klas Kalass (klas.kalass@freiheit.com) (initial creation)

From source file be.lavait.spring.boot.axon.AutoEventSourcingRepositoryCreator.java

public class AutoEventSourcingRepositoryCreator implements BeanPostProcessor, BeanFactoryAware {

    private EventStore eventStore;

    private EventBus eventBus;

From source file uk.co.unclealex.process.spring.PackageCheckingPostProcessor.java

/**
 * A Spring {@link BeanPostProcessor} that fails if a bean requires uninstalled
 * packages.
 * 
 * @author alex
 * @see RequiresPackages

From source file org.activiti.spring.components.aop.ProcessStartAnnotationBeanPostProcessor.java

import org.springframework.beans.factory.config.BeanPostProcessor;
import org.springframework.util.ClassUtils;

/**
 * Proxies beans with methods annotated with {@link StartProcess}.
 * If the method is invoked successfully, the process described by the annotaton is created.