Example usage for org.springframework.beans.factory.config InstantiationAwareBeanPostProcessorAdapter subclass-usage

List of usage examples for org.springframework.beans.factory.config InstantiationAwareBeanPostProcessorAdapter subclass-usage

Introduction

In this page you can find the example usage for org.springframework.beans.factory.config InstantiationAwareBeanPostProcessorAdapter subclass-usage.

Usage

From source file org.constretto.spring.ConfigurationAnnotationConfigurer.java

/**
 * {@link BeanPostProcessor} implementation that autowires annotated fields annotated with the @Configuration or
 * @Environment annotations.
 * <p/>
 * <p/>
 * Fields are injected right after construction of a bean, before any config methods are invoked. Such a config field

From source file org.jdal.aop.config.SerializableAnnotationBeanPostProcessor.java

/**
 * BeanPostProcessor that process {@link org.jdal.annotation.SerializableProxy} annotation 
 * for replacing fields or properties with serializable proxies.
 * 
 * @author Jose Luis Martin
 * @since 2.0

From source file org.openspaces.core.context.GigaSpaceContextBeanPostProcessor.java

/**
 * A Spring bean post processor allowing to use {@link GigaSpaceContext} in order to inject {@link
 * GigaSpaceContext} instances using annotations.
 *
 * @author kimchy
 * @see org.openspaces.core.context.GigaSpaceContext

From source file org.compass.spring.support.CompassContextBeanPostProcessor.java

/**
 * BeanPostProcessor that processes {@link org.compass.core.CompassContext}
 * annotation for injection of Compass interfaces. Any such annotated fields
 * or methods in any Spring-managed object will automatically be injected.
 * <p/>
 * Will inject either a {@link org.compass.core.Compass} or {@link org.compass.core.CompassSession} instances.

From source file com.quancheng.saluki.boot.runner.GrpcReferenceRunner.java

/**
 * @author shimingliu 20161216 ?5:07:02
 * @version ThrallReferenceRunner.java, v 0.0.1 20161216 ?5:07:02 shimingliu
 */
public class GrpcReferenceRunner extends InstantiationAwareBeanPostProcessorAdapter {

From source file org.openspaces.remoting.RemotingAnnotationBeanPostProcessor.java

/**
 * @author kimchy
 */
public class RemotingAnnotationBeanPostProcessor extends InstantiationAwareBeanPostProcessorAdapter
        implements ApplicationContextAware, Ordered {

From source file org.okj.commons.annotations.ServiceReferenceInjectionBeanPostProcessor.java

/**
 * <code>BeanPostProcessor</code> that processed annotation to inject
 * Spring-DM managed OSGi services.
 * 
 * @author Andy Piper
 */

From source file org.springframework.osgi.extensions.annotation.ServiceReferenceInjectionBeanPostProcessor.java

/**
 * <code>BeanPostProcessor</code> that processed annotation to inject Spring-DM
 * managed OSGi services.
 * 
 * @author Andy Piper
 */

From source file org.robospring.inject.RoboSpringInjector.java

/**
 * This injector is able to inject Spring beans, Views from the layout and
 * extras into a Bean or {@link Activity}.
 *
 * @author Daniel Thommes
 */

From source file org.apache.james.container.spring.lifecycle.osgi.AbstractOSGIAnnotationBeanPostProcessor.java

/**
 * Abstract base class for {@link BeanPostProcessor} implementations which need to wire stuff via annotations and need to be functional via OSGI.
 * 
 * Many of this code is borrowed from the spring-dm's class <code>org.springframework.osgi.extensions.annotation.ServiceReferenceInjectionBeanPostProcessor.</code>
 *  * 
 *