Example usage for org.springframework.context ApplicationContext interface-usage

List of usage examples for org.springframework.context ApplicationContext interface-usage

Introduction

In this page you can find the example usage for org.springframework.context ApplicationContext interface-usage.

Usage

From source file org.tradex.spring.ApplicationContextServiceMBean.java

/**
 * <p>Title: ApplicationContextServiceMBean</p>
 * <p>Description: JMX MBean interface for {@link ApplicationContextService}</p> 
 * <p>Company: Helios Development Group LLC</p>
 * @author Whitehead (nwhitehead AT heliosdev DOT org)
 * <p><code>org.tradex.spring.ApplicationContextServiceMBean</code></p>

From source file org.ops4j.pax.wicket.test.spring.ApplicationContextMock.java

/**
 * Mock application context object. This mock context allows easy creation of
 * unit tests by allowing the user to put bean instances into the context. Only
 * {@link #getBean(String)}, {@link #getBean(String, Class)}, and
 * {@link #getBeansOfType(Class)
 * } are implemented so far. Any other method

From source file com.predic8.membrane.annot.parser.BlueprintSimulatedSpringApplicationContext.java

/**
 * Partial implementation of {@link ApplicationContext} to support the methods
 * called by membrane-core in a blueprint-based deployment.
 */
public class BlueprintSimulatedSpringApplicationContext implements ApplicationContext {

From source file com.github.haixing_hu.ilibrary.AppConfig.java

/**
 * The global configuration of the application.
 *
 * @author Haixing Hu
 */
public final class AppConfig implements ApplicationContext, Configuration, KeySuffix {

From source file org.impalaframework.spring.module.graph.GraphDelegatingApplicationContext.java

/**
 * Implementation of {@link ApplicationContext} which wraps a single parent {@link ApplicationContext}, but also
 * support delegating of {@link #getBean(String)} and overloaded methods to {@link ApplicationContext}s backing
 * dependent modules.
 * 
 * @author Phil Zoio