Example usage for org.springframework.beans.factory.support MergedBeanDefinitionPostProcessor interface-usage

List of usage examples for org.springframework.beans.factory.support MergedBeanDefinitionPostProcessor interface-usage

Introduction

In this page you can find the example usage for org.springframework.beans.factory.support MergedBeanDefinitionPostProcessor interface-usage.

Usage

From source file org.makersoft.log.LoggerAnnotationBeanPostProcessor.java

/**
 * Logger.
 */
public class LoggerAnnotationBeanPostProcessor extends InstantiationAwareBeanPostProcessorAdapter
        implements MergedBeanDefinitionPostProcessor, PriorityOrdered, BeanFactoryAware {

From source file com.bstek.dorado.common.service.ExposedServiceAnnotationBeanPostProcessor.java

/**
 * @author Benny Bao (mailto:benny.bao@bstek.com)
 * @since 2010-11-29
 */
public class ExposedServiceAnnotationBeanPostProcessor extends EngineStartupListener
        implements MergedBeanDefinitionPostProcessor {

From source file org.springframework.context.support.ApplicationListenerDetector.java

/**
 * {@code BeanPostProcessor} that detects beans which implement the {@code ApplicationListener}
 * interface. This catches beans that can't reliably be detected by {@code getBeanNamesForType}
 * and related operations which only work against top-level beans.
 *
 * <p>With standard Java serialization, this post-processor won't get serialized as part of

From source file com.payu.ratel.register.ServiceRegisterPostProcessor.java

public class ServiceRegisterPostProcessor implements MergedBeanDefinitionPostProcessor {

    private static final Logger LOGGER = LoggerFactory.getLogger(ServiceRegisterPostProcessor.class);

    private final ConfigurableListableBeanFactory configurableListableBeanFactory;
    private final RegisterStrategy registerStrategy;

From source file com.bstek.dorado.data.config.DataObjectAnnotationEngineStartupListener.java

/**
 * Dorado??????
 * 
 * @author Benny Bao (mailto:benny.bao@bstek.com)
 * @since Dec 12, 2007
 * @see com.bstek.dorado.core.EngineStartupListener

From source file org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.java

/**
 * {@link org.springframework.beans.factory.config.BeanPostProcessor} implementation
 * that invokes annotated init and destroy methods. Allows for an annotation
 * alternative to Spring's {@link org.springframework.beans.factory.InitializingBean}
 * and {@link org.springframework.beans.factory.DisposableBean} callback interfaces.
 *

From source file com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor.java

/**
 * {@link org.springframework.beans.factory.config.BeanPostProcessor} implementation
 * that Consumer service {@link Reference} annotated fields
 *
 * @since 2.5.7
 */

From source file net.stickycode.mockwire.spring30.MockwireFieldInjectionAnnotationBeanPostProcessor.java

/**
 *A copy of {@link AutowiredAnnotationBeanPostProcessor} that only wires {@link UnderTest}, {@link Controlled} and {@link Uncontrolled} on fields. * @see AutowiredAnnotationBeanPostProcessor
 */
public class MockwireFieldInjectionAnnotationBeanPostProcessor extends InstantiationAwareBeanPostProcessorAdapter
        implements MergedBeanDefinitionPostProcessor, PriorityOrdered, BeanFactoryAware {

From source file org.springframework.jms.annotation.JmsListenerAnnotationBeanPostProcessor.java

/**
 * Bean post-processor that registers methods annotated with {@link JmsListener}
 * to be invoked by a JMS message listener container created under the cover
 * by a {@link org.springframework.jms.config.JmsListenerContainerFactory}
 * according to the attributes of the annotation.
 *

From source file com.baidu.jprotobuf.pbrpc.spring.annotation.CommonAnnotationBeanPostProcessor.java

/**
 * Common annotation bean post processor. it uses {@link AnnotationParserCallback}<br>
 * interface to define specified {@link Annotation} then recognize the Class to do <br>
 * bean define action
 * 
 * @see AnnotationParserCallback