Example usage for org.springframework.context.support ClassPathXmlApplicationContext subclass-usage

List of usage examples for org.springframework.context.support ClassPathXmlApplicationContext subclass-usage

Introduction

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

Usage

From source file gov.nih.nci.integration.util.CustomClasspathXmlApplicationContext.java

/**
 * Spring application context that uses custom url classloader
 * 
 * @author <a href="mailto:vinodh.rc@semanticbits.com">Vinodh Chandrasekaran</a>
 * 
 */

From source file com.ivanzhangwb.interpose.core.InterposeClassPathApplicationContext.java

/**
 * InterposeApplicationContext.java??Spring
 * 
 * @author zhangwenbo Jan 10, 2013 9:49:59 AM
 */
public class InterposeClassPathApplicationContext extends ClassPathXmlApplicationContext {

From source file org.carewebframework.api.spring.FrameworkAppContext.java

/**
 * Subclass ClassPathXmlApplicationContext to disable bean definition override capability. There is
 * currently no more direct way to do this for the root container.
 * <p>
 * By disabling bean definition overriding we can implement more granular control over when to allow
 * bean definition overriding.

From source file ch.nydi.spring.context.support.PrimaryResolverClassPathXmlApplicationContext.java

/**
 * Overrides <code>createBeanFactory()</code> to load a {@link PrimaryResolverListableBeanFactory}.
 * 
 * @author Daniel Nydegger
 */
public class PrimaryResolverClassPathXmlApplicationContext extends ClassPathXmlApplicationContext {

From source file com.griddynamics.banshun.SingleResourceXmlChildContext.java

public final class SingleResourceXmlChildContext extends ClassPathXmlApplicationContext {

    private Resource resource;

    public SingleResourceXmlChildContext(Resource resource, ApplicationContext parent) {
        this.resource = resource;

From source file com.liferay.portal.spring.extender.internal.context.ModuleApplicationContext.java

/**
 * @author Miguel Pastor
 */
public class ModuleApplicationContext extends ClassPathXmlApplicationContext {

    public ModuleApplicationContext(Bundle bundle, ClassLoader classLoader, String[] configLocations) {

From source file hotbeans.support.SpringHotBeanContext.java

/**
 * HotBeanContext implementation that uses a Spring application context for definition of beans.
 * 
 * @author Tobias Lfstrand
 */
public class SpringHotBeanContext extends ClassPathXmlApplicationContext implements HotBeanContext {

From source file com.sourceallies.beanoh.spring.wrapper.BeanohApplicationContext.java

/**
 * Wraps XML context loading in order to track loaded bean definitions. This
 * information is used to determine if duplicate bean definitions have been
 * loaded
 * 
 * @author David Kessler

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 org.nebulaframework.util.spring.NebulaApplicationContext.java

/**
 * Custom implementation of Spring Framework's
 * {@code ClassPathXmlApplicationContext}, which disables the XSD validation to
 * improve the start up time of application context. Furthermore, this allows to
 * specify a Property File directly which can be used to configure the
 * {@code ApplicationContext}.