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.springframework.web.context.support.ServletContextAwareProcessor.java

/**
 * BeanPostProcessor implementation that passes the ServletContext to
 * beans that implement the ServletContextAware interface.
 *
 * <p>Web application contexts will automatically register this with their
 * underlying bean factory. Applications do not use this directly.

From source file org.spring.data.gemfire.config.RegionPutAllBeanPostProcessor.java

/**
 * The RegionPutAllBeanPostProcessor class is a Spring BeanPostProcessor that enables a GemFire Cache Region to be
 * initialized with data (key/values) in Spring XML configuration meta-data.
 *
 * @author John Blum
 * @see java.util.Map

From source file org.arrow.data.neo4j.postprocess.infrastructure.GraphRepositoryBeanPostProcessor.java

/**
 * {@link BeanPostProcessor} implementation used to register the query post
 * processing infrastructure.
 * 
 * @author christian.weber
 * @since 1.0.0

From source file org.spring.beans.factory.config.BeanDependencyOrderVerificationBeanPostProcessor.java

/**
 * The OrderVerificationBeanPostProcessor class verifies the order of the Spring container's bean construction based on
 * dependency order.
 *
 * @author John Blum
 * @see org.spring.beans.TestBean

From source file org.zalando.zmon.actuator.ZmonRestFilterBeanPostProcessor.java

public class ZmonRestFilterBeanPostProcessor implements BeanPostProcessor, BeanFactoryAware {
    private static final Log logger = LogFactory.getLog(ZmonRestFilterBeanPostProcessor.class);

    private BeanFactory beanFactory;

    @Override

From source file net.bull.javamelody.SpringRestTemplateBeanPostProcessor.java

/**
 * Post-processor Spring pour un ventuel {@link RestTemplate} dfini dans le fichier xml Spring.
 * @author Emeric Vernat
 */
public class SpringRestTemplateBeanPostProcessor implements BeanPostProcessor, PriorityOrdered {
    private static final boolean REST_TEMPLATE_INTERCEPTOR_AVAILABLE = isRestTemplateInterceptorAvailable();

From source file org.mule.ibeans.spring.IBeanInjectorsBeanPostProcessor.java

/**
 * TODO
 */
public class IBeanInjectorsBeanPostProcessor implements BeanPostProcessor {
    private InjectAnnotationProcessor injectDelegate;
    private AnnotatedServiceObjectProcessor applicationAnnotationsProcessor;

From source file com.nebhale.cyclinglibrary.web.json.JsonSerializerRegisteringBeanPostProcessor.java

@Component
final class JsonSerializerRegisteringBeanPostProcessor<T> implements BeanPostProcessor {

    private final ObjectMapper objectMapper;

    @Autowired

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

/**
 * <tt>BeanPostProcessor</tt> for {@link it.cosenonjaviste.alfresco.annotations.JsExtension} annotation.
 *
 * <p>
 *     This processor register {@link JsExtension#value()} as <strong>extension name</strong>
 * </p>

From source file org.springframework.osgi.context.support.BundleContextAwareProcessor.java

/**
 * For internal use only. Used by OsgiBundleXmlApplicationContext to 
 * inject beans implementing BundleContextAware with a reference to the
 * current BundleContext.
 * 
 * @author Adrian Colyer