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

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

Introduction

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

Usage

From source file net.okjsp.common.MapperScannerConfigurer.java

/**
 * BeanDefinitionRegistryPostProcessor that searches recursively starting from a base package for
 * interfaces and registers them as {@code MapperFactoryBean}. Note that only interfaces with at
 * least one method will be registered; concrete classes will be ignored.
 * <p>
 * The {@code basePackage} property can contain more than one package name, separated by either

From source file org.lightadmin.core.config.bootstrap.LightAdminBeanDefinitionRegistryPostProcessor.java

public class LightAdminBeanDefinitionRegistryPostProcessor implements BeanDefinitionRegistryPostProcessor {

    public static final String JPA_MAPPPING_CONTEXT_BEAN = "jpaMapppingContext";
    public static final String REPOSITORIES_BEAN = "repositories";
    public static final String LIGHTADMIN_CONFIGURATION_BEAN = "lightAdminConfiguration";
    public static final String CONFIGURATION_UNITS_VALIDATOR_BEAN = "configurationUnitsValidator";

From source file gr.abiss.calipso.tiers.processor.ModelDrivenBeansGenerator.java

/**
 * TGenerates <code>Repository</code>, <code>Service</code> and
 * <code>Controller</code> tiers for entity beans are annotated with {@link javax.persistence.ModelResource} 
 * or {@link gr.abiss.calipso.tiers.annotation.ModelRelatedResource}.
 */
public class ModelDrivenBeansGenerator implements BeanDefinitionRegistryPostProcessor {

From source file de.acosix.alfresco.utility.common.spring.BeanDefinitionFromPropertiesPostProcessor.java

/**
 * Base class for post processors that need to emit, enhance or remove bean definitions based on simple configuration in properties files
 * (i.e. alfresco-global.properties) to provide more dynamic configuration options than via pre-defined XML bean definitions.
 *
 * @author Axel Faust, <a href="http://acosix.de">Acosix GmbH</a>
 */

From source file gr.abiss.calipso.tiers.processor.ModelDrivenBeanGeneratingRegistryPostProcessor.java

/**
 * Generates <code>Repository</code>, <code>Service</code> and
 * <code>Controller</code> tiers for entity beans are annotated with
 * {@link javax.persistence.ModelResource} or
 * {@link gr.abiss.calipso.tiers.annotation.ModelRelatedResource}.
 */

From source file org.springframework.context.annotation.ConfigurationClassPostProcessor.java

/**
 * {@link BeanFactoryPostProcessor} used for bootstrapping processing of
 * {@link Configuration @Configuration} classes.
 *
 * <p>Registered by default when using {@code <context:annotation-config/>} or
 * {@code <context:component-scan/>}. Otherwise, may be declared manually as

From source file org.statefulj.framework.core.StatefulFactory.java

/**
 * StatefulFactory is responsible for inspecting all StatefulControllers and building out
 * the StatefulJ framework.  The factory is invoked at post processing of the beans but before
 * the beans are instantiated
 *
 * @author Andrew Hall