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.kuali.rice.krad.uif.util.ComponentBeanPostProcessor.java

/**
 * Spring <code>BeanPostProcessor</code> that processes configured <code>Component</code>
 * instances in the dictionary
 *
 * @author Kuali Rice Team (rice.collab@kuali.org)
 */

From source file spring.osgi.context.internal.BundleContextAwareProcessor.java

/**
 * {@link org.springframework.beans.factory.config.BeanPostProcessor} handling classes that implement
 * <code>BundleContextAware</code> interface.
 *
 * @author Adrian Colyer
 * @author Costin Leau

From source file com.avanza.astrix.spring.AstrixBeanPostProcessor.java

/**
 * 
 * @author Elias Lindholm (elilin)
 *
 */
public class AstrixBeanPostProcessor implements BeanPostProcessor {

From source file org.kuali.rice.krad.datadictionary.uif.ComponentBeanPostProcessor.java

/**
 * Spring <code>BeanPostProcessor</code> that processes configured <code>Component</code>
 * instances in the dictionary.
 *
 * @author Kuali Rice Team (rice.collab@kuali.org)
 */

From source file com.github.shyiko.mappify.handcraft.spring.HandcraftMapperInitializingBean.java

/**
 * {@link BeanPostProcessor} which discovers mappings by scanning Spring context for {@link MappingProvider}
 * annotated beans.
 *
 * @author <a href="mailto:stanley.shyiko@gmail.com">Stanley Shyiko</a>
 */

From source file eu.tripledframework.eventbus.autoconfigure.EventHandlerRegistrationBeanPostProcessor.java

public class EventHandlerRegistrationBeanPostProcessor implements BeanPostProcessor {

    private EventSubscriber eventSubscriber;

    @Autowired
    public EventHandlerRegistrationBeanPostProcessor(EventSubscriber eventSubscriber) {

From source file be.functor.cycloscan.SpringLoadingMonitor.java

/**
 * A monitor for the spring loading process.
 *
 * @author Kenny Moens
 */
@Service

From source file org.echocat.jomon.spring.i18n.LocaleProvider.java

public class LocaleProvider implements BeanPostProcessor, InitializingBean, FactoryBean<Set<Locale>> {

    private final Set<Locale> _locales = new HashSet<>();

    @Override
    public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {

From source file org.zalando.baigan.context.ConfigurationContextProviderBeanPostprocessor.java

/**
 * This class implements the {@link BeanPostProcessor} interface to register all
 * the {@link ContextProvider}s in the default {@link ContextProviderRegistry}
 *
 * @author mchand
 * @since 1.0

From source file uk.ac.jisc.saml.mdman.controller.beans.MVCConfigurationPostProcessor.java

/**
 * Spring's default behavior is to decode the URL passed to it by the container,
 * and then parse the path into components on "/" characters. This means you
 * can't use URL-encoded "/" characters (%2f) within identifiers.
 *
 * See, for example, https://jira.springsource.org/browse/SPR-11101