Example usage for org.springframework.web.context WebApplicationContext interface-usage

List of usage examples for org.springframework.web.context WebApplicationContext interface-usage

Introduction

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

Usage

From source file org.geoserver.test.GeoServerTestApplicationContext.java

/**
 * A spring application context used for GeoServer testing.
 *
 * @author Justin Deoliveira, The Open Planning Project, jdeolive@openplans.org
 *
 */

From source file net.javacrumbs.smock.http.server.servlet.ApplicationContextWrapper.java

/**
 * Wraps an application context and exposes it as {@link WebApplicationContext}. 
 * It's used because JAX-WS RI needs {@link WebApplicationContext} and uses getBeansOfType which does not 
 * work with parent application context.
 * @author Lukas Krecan
 *

From source file org.echocat.nodoodle.server.utils.DelegatingWebApplicationContext.java

public class DelegatingWebApplicationContext implements WebApplicationContext {

    private final ApplicationContext _applicationContext;
    private final ServletContext _servletContext;

    public DelegatingWebApplicationContext(ApplicationContext applicationContext, ServletContext servletContext) {

From source file org.urbantower.j4s.EmbeddedJettyWebAppContext.java

/**
 * This class wrapping the regular ApplicationContext and turn it
 * to WebApplicationContext.
 */
class EmbeddedJettyWebAppContext implements WebApplicationContext {

From source file it.doqui.index.ecmengine.business.startup.jboss.EcmWebApplicationContext.java

/**
 * Performs the actual initialization work for the root application context.
 * Called by ContextLoaderListener and ContextLoaderServlet.
 *
 * <p>Looks for a "contextClass" parameter at the web.xml context-param level
 * to specify the context class type, falling back to the default of

From source file org.codehaus.groovy.grails.support.MockApplicationContext.java

public class MockApplicationContext extends GroovyObjectSupport implements WebApplicationContext {

    Date startupDate = new Date();
    Map<String, Object> beans = new HashMap<String, Object>();
    List<Resource> resources = new ArrayList<Resource>();
    List<String> ignoredClassLocations = new ArrayList<String>();