Example usage for org.springframework.beans.factory BeanFactory interface-usage

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

Introduction

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

Usage

From source file name.livitski.tools.springlet.ManagedLauncher.java

/**
 * A {@link Launcher} for use in managed environments, such as unit
 * tests, that require access to the application's
 * {@link #getBeanFactory() bean container}. This class implements methods
 * that delegate to the bean container. It does not set up any logging
 * for the application, unless requested to by calling the 

From source file org.kuali.rice.test.CompositeBeanFactory.java

/** 
 * Wraps a collection of bean factories delegating to the inner bean factories.
 * 
 * The first bean factory that returns a non-null/true result is the value that is returned/
 */
public final class CompositeBeanFactory implements BeanFactory {

From source file io.meles.spring.SpringContextRule.java

public class SpringContextRule implements TestRule, BeanFactory {

    private final Class<?>[] config;
    private ApplicationContext applicationContext;

    private SpringContextRule(final Builder builder) {

From source file org.jboss.spring.facade.ControllerBeanFactory.java

/**
 * BeanFactory facade over MC's Controller.
 *
 * @author <a href="mailto:ales.justin@jboss.org">Ales Justin</a>
 * @author <a href="mailto:mariusb@redhat.com">Marius Bogoevici</a>
 */

From source file com.all.app.BeanCreationMonitor.java

public class BeanCreationMonitor extends DefaultListableBeanFactory implements BeanFactory, BeanPostProcessor {
    private static final Log log = LogFactory.getLog(BeanCreationMonitor.class);
    private final BeanStatistics statistics;

    public BeanCreationMonitor() {
        this(new BeanStatistics());