Example usage for org.springframework.core.io DefaultResourceLoader subclass-usage

List of usage examples for org.springframework.core.io DefaultResourceLoader subclass-usage

Introduction

In this page you can find the example usage for org.springframework.core.io DefaultResourceLoader subclass-usage.

Usage

From source file org.mule.module.apikit.validation.io.SchemaResourceLoader.java

public class SchemaResourceLoader extends DefaultResourceLoader {

    public static final String JSON_SCHEMA_PREFIX = "jsonschema:";
    public static final String XML_SCHEMA_PREFIX = "xmlschema:";

    public SchemaResourceLoader(ClassLoader classLoader) {

From source file org.mule.config.spring.MuleResourceLoader.java

/**
 * <code>MuleResourceLoader</code> is a custom Spring resource loader that calls
 * standard Mule methods for loading resource files.
 */
public class MuleResourceLoader extends DefaultResourceLoader implements ResourcePatternResolver {
    protected transient Log logger = LogFactory.getLog(MuleResourceLoader.class);

From source file spring.osgi.io.OsgiBundleResourceLoader.java

/**
 * OSGi specific {@link org.springframework.core.io.ResourceLoader}
 * implementation.
 * <p/>
 * This loader resolves paths inside an OSGi bundle using the bundle native
 * methods. Please see {@link OsgiBundleResource} javadoc for information on

From source file org.alfresco.util.resource.HierarchicalResourceLoader.java

/**
 * Locate resources by using a class hierarchy to drive the search.  The well-known
 * placeholder {@link #DEFAULT_DIALECT_PLACEHOLDER} is replaced with successive class
 * names starting from the {@link #setDialectClass(String) dialect class} and
 * progressing up the hierarchy until the {@link #setDialectBaseClass(String) base class}
 * is reached.  A full resource search using Spring's {@link DefaultResourceLoader} is

From source file org.grails.dev.support.DevelopmentResourceLoader.java

/**
 * Allows files references like /WEB-INF/grails-app to be loaded from ./grails-app to support
 * the difference between wAR deployment and run-app.
 *
 * @author Graeme Rocher
 * @since 1.0

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

/**
 * Allows files references like /WEB-INF/grails-app to be loaded from ./grails-app to support
 * the difference between wAR deployment and run-app.
 *
 * @author Graeme Rocher
 * @since 1.0

From source file org.jboss.spring.vfs.VFSResourceLoader.java

/**
 * VFS based ResourceLoader.
 *
 * @author <a href="mailto:ales.justin@jboss.com">Ales Justin</a>
 * @author <a href="mailto:mariusb@redhat.com">Marius Bogoevici</a>
 */

From source file org.apache.james.container.spring.resource.AbstractJamesResourceLoader.java

/**
 * Abstract base class which load JAMES files based on the prefix. This can be
 * used in different {@link ApplicationContext} implementations
 */
public abstract class AbstractJamesResourceLoader extends DefaultResourceLoader implements JamesResourceLoader {

From source file org.geoserver.platform.GeoServerResourceLoader.java

/**
 * Access to resources in GeoServer including configuration information and unmanaged cache or log files.
 * <p>
 * The loader maintains a search path in which it will use to look up resources.
 * </p>
 * <ul>

From source file org.springframework.data.hadoop.fs.HdfsResourceLoader.java

/**
 * Spring ResourceLoader over Hadoop FileSystem.
 *
 * @author Costin Leau
 * @author Janne Valkealahti
 *