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 edu.mayo.cts2.framework.plugin.service.nlm.mybatis.osgi.MapperScannerConfigurer.java

/**
 * The Class MapperScannerConfigurer.
 *
 * @author <a href="mailto:kevin.peterson@mayo.edu">Kevin Peterson</a>
 */
public class MapperScannerConfigurer

From source file org.springframework.cloud.context.scope.GenericScope.java

/**
 * <p>
 * A generic Scope implementation.
 * </p>
 * 
 * @author Dave Syer

From source file org.springframework.platform.context.scope.GenericScope.java

/**
 * <p>
 * A generic Scope implementation.
 * </p>
 * 
 * @author Dave Syer

From source file com.alvexcore.repo.workflow.activiti.AssignTaskListener.java

public class AlvexPostBpmnParseHandler implements BpmnParseHandler, BeanFactoryPostProcessor {

    private static final String HANDLER_BEAN_NAME = "alvex-activiti-connector-post-parse-handler";
    private static final String POST_PARSE_HANDLERS = "postBpmnParseHandlers";
    private static final String ACTIVITI_PROCESS_ENGINE_CONFIGURATION = "activitiProcessEngineConfiguration";
    final static String EVENT_TASK_ASSIGN1 = "task-assign-before-change";

From source file org.springframework.amqp.rabbit.stocks.context.RefreshScope.java

/**
 * <p>A Scope implementation that allows for beans to be refreshed dynamically at runtime (see {@link #refresh(String)}
 * and {@link #refreshAll()}). If a bean is refreshed then the next time the bean is accessed (i.e. a method is
 * executed) a new instance is created. All lifecycle methods are applied to the bean instances, so any destruction
 * callbacks that were registered in the bean factory are called when it is refreshed, and then the initialization
 * callbacks are invoked as normal when the new instance is created. A new bean instance is created from the original

From source file com.mmnaseri.dragonfly.runtime.session.ApplicationSessionPreparator.java

/**
 * @author Milad Naseri (mmnaseri@programmer.net)
 * @since 1.0 (2013/9/18, 17:56)
 */
@Deprecated
public class ApplicationSessionPreparator implements BeanFactoryPostProcessor {

From source file org.bytesoft.bytejta.supports.springcloud.SpringCloudConfiguration.java

@PropertySource(value = "bytejta:loadbalancer.config", factory = TransactionPropertySourceFactory.class)
@Configuration
public class SpringCloudConfiguration extends WebMvcConfigurerAdapter
        implements BeanFactoryPostProcessor, TransactionEndpointAware, EnvironmentAware, ApplicationContextAware {
    static final String CONSTANT_INCLUSIONS = "org.bytesoft.bytejta.feign.inclusions";
    static final String CONSTANT_EXCLUSIONS = "org.bytesoft.bytejta.feign.exclusions";

From source file com.meidusa.venus.client.VenusServiceFactory.java

public class VenusServiceFactory
        implements ServiceFactory, BeanFactoryAware, InitializingBean, BeanFactoryPostProcessor {
    private static Logger logger = LoggerFactory.getLogger(ServiceFactory.class);
    private Map<Class<?>, Tuple<Object, RemotingInvocationHandler>> servicesMap = new HashMap<Class<?>, Tuple<Object, RemotingInvocationHandler>>();
    private Map<String, Tuple<Object, RemotingInvocationHandler>> serviceBeanMap = new HashMap<String, Tuple<Object, RemotingInvocationHandler>>();
    private BeanFactory beanFactory;