Example usage for org.springframework.beans.factory.config BeanFactoryPostProcessor interface-usage

List of usage examples for org.springframework.beans.factory.config BeanFactoryPostProcessor interface-usage

Introduction

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

Usage

From source file hsa.awp.common.util.StaticInitializerBeanFactoryPostProcessor.java

/**
 * This {@link BeanFactoryPostProcessor} can initialize static variables in Spring Beans.
 *
 * @author johannes
 */
public class StaticInitializerBeanFactoryPostProcessor implements BeanFactoryPostProcessor {

From source file com.github.steveash.spring.WiringFactoryBeanFactoryPostProcessor.java

/**
 * Bean Factory post processor to dynamically generate prototype definitions in the container for any
 * WiringFactory objects
 * @author Steve Ash
 */
@Component

From source file com.haulmont.cuba.core.sys.remoting.RemoteServicesBeanCreator.java

public class RemoteServicesBeanCreator implements BeanFactoryPostProcessor, ApplicationContextAware {

    private static final Logger log = LoggerFactory.getLogger(RemoteServicesBeanCreator.class);

    private ApplicationContext context;

From source file br.com.d4n.ui4entity.mvc.SpringContextConfigurer.java

public class SpringContextConfigurer implements BeanFactoryPostProcessor {

    Logger logger = LoggerFactory.getLogger(SpringContextConfigurer.class);

    private Class<? extends HandlerMethodReturnValueHandler> handlerReturnValueType = RequestResponseBodyMethodProcessor.class;

From source file org.bytesoft.bytetcc.supports.dubbo.CompensableDubboConfigValidator.java

public class CompensableDubboConfigValidator implements BeanFactoryPostProcessor {
    static final Logger logger = LoggerFactory.getLogger(CompensableDubboConfigValidator.class.getSimpleName());

    static final String KEY_TIMEOUT = "timeout";
    static final String KEY_FILTER_COMPENSABLE = "compensable";
    static final String KEY_GROUP_COMPENSABLE = "org.bytesoft.bytetcc";

From source file org.alfresco.util.BeanExtender.java

/**
 * Extends the definition of a bean with another.
 * <p>
 * Implements bean factory post processor.
 *
 * @author Roy Wetherall

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

/**
 * {@link BeanPostProcessor} implementation that autowires annotated fields annotated with the &#064;Configuration or
 * &#064;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.cloudfoundry.reconfiguration.spring.AbstractHibernateBasedCloudServiceBeanFactoryPostProcessor.java

abstract class AbstractHibernateBasedCloudServiceBeanFactoryPostProcessor implements BeanFactoryPostProcessor {

    private static final ManagedProperties MYSQL_PROPERTIES;

    private static final ManagedProperties POSTGRES_PROPERTIES;

From source file com.brienwheeler.lib.spring.beans.ContextBeanDumper.java

/**
 * If this bean exists in a Spring context and DEBUG logging is enabled for it, it will
 * log an alphabetically sorted list of Spring bean names contained in the context.  
 *  
 * @author Brien Wheeler
 */

From source file org.alfresco.module.org_alfresco_module_rm.security.RMMethodSecurityPostProcessor.java

/**
 * Records management method security post processor.
 * <p>
 * Combines RM method security configuration with that of the core server before the security
 * bean is instantiated.
 *