Example usage for org.springframework.web.context ContextLoader subclass-usage

List of usage examples for org.springframework.web.context ContextLoader subclass-usage

Introduction

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

Usage

From source file ar.com.zauber.commons.spring.mock.TestFriendlyContextLoader.java

/**
 * {@link ContextLoader} subclass that lets {@link TestCase}s to initialize
 * {@link WebApplicationContext} and query for a bean.
 * 
 * For example:
 * <pre>

From source file org.psikeds.common.config.ContextLoaderListener.java

/**
 * Custom ContextLoader for the Springframework, allowing to override the
 * configuration at runtime with files found in the configuration directory.
 * Therefore it install a proxy for the javax.servlet.ServletContext and
 * overrides the location of the Spring-Context-Files.
 * 

From source file org.mortbay.jetty.spring.jee.JEEContextLoader.java

/**
 * JEEContextLoader
 * 
 * Loads the spring-ejb.xml files describing ejbs from any META-INF dir in any
 * jar or classes dir on the runtime classpath.
 * 

From source file net.sourceforge.safr.jaas.web.spring.SecureContextLoader.java

/**
 * @author Christian Ohr
 * @author Martin Krasser
 */
public class SecureContextLoader extends ContextLoader {

From source file com.apdplat.platform.spring.APDPlatContextLoaderListener.java

/**
 * Bootstrap listener to start up and shut down Spring's root {@link WebApplicationContext}.
 * Simply delegates to {@link ContextLoader} as well as to {@link ContextCleanupListener}.
 *
 * <p>This listener should be registered after
 * {@link org.springframework.web.util.Log4jConfigListener}

From source file org.apdplat.platform.spring.APDPlatContextLoaderListener.java

/**
 * Bootstrap listener to start up and shut down Spring's root {@link WebApplicationContext}.
 * Simply delegates to {@link ContextLoader} as well as to {@link ContextCleanupListener}.
 *
 * <p>This listener should be registered after
 * {@link org.springframework.web.util.Log4jConfigListener}

From source file nl.tue.gale.ae.config.GaleContextLoader.java

public class GaleContextLoader extends ContextLoader {
    public GaleContextLoader() {
        super();
    }

    @Override

From source file org.kimios.core.CoreListener.java

/**
 * @author Fabien Alin
 */
public class CoreListener extends ContextLoader implements ServletContextListener {
    final Logger log = LoggerFactory.getLogger(CoreListener.class);

From source file net.sf.sail.webapp.spring.impl.CustomContextLoader.java

/**
 * Customized implementation that ignores the web.xml context parameter for
 * configLocations that is normally used to list all of the spring configuration
 * files. Instead, we pull the values out of SpringConfigurationImpl class.
 * 
 * @author Cynick Young

From source file org.sakaiproject.component.impl.ContextLoader.java

/**
 * <p>
 * Sakai's extension to Spring's ContextLoader - adds the location of the ComponentManager shared AC, linking the local AC to it as parent, and loading localy hosted components into shared.
 * </p>
 */
public class ContextLoader extends org.springframework.web.context.ContextLoader {