Groovy Documentation

org.codehaus.groovy.grails.io.support
[Java] Interface ResourceLoader


public interface ResourceLoader

Strategy interface for loading resources (e.. class path or file system resources). An ApplicationContext is required to provide this functionality, plus extended ResourcePatternResolver support.

Bean properties of type Resource and Resource array can be populated from Strings when running in an ApplicationContext, using the particular context's resource loading strategy.

Authors:
Juergen Hoeller
Since:
10.03.2004


Field Summary
java.lang.String CLASSPATH_URL_PREFIX

Pseudo URL prefix for loading from the class path: "classpath:"

 
Method Summary
java.lang.ClassLoader getClassLoader()

Expose the ClassLoader used by this ResourceLoader.

Resource getResource(java.lang.String location)

Return a Resource handle for the specified resource.

 

Field Detail

CLASSPATH_URL_PREFIX

public java.lang.String CLASSPATH_URL_PREFIX
Pseudo URL prefix for loading from the class path: "classpath:"


 
Method Detail

getClassLoader

public java.lang.ClassLoader getClassLoader()
Expose the ClassLoader used by this ResourceLoader.

Clients which need to access the ClassLoader directly can do so in a uniform manner with the ResourceLoader, rather than relying on the thread context ClassLoader.

Returns:
the ClassLoader (never null)


getResource

public Resource getResource(java.lang.String location)
Return a Resource handle for the specified resource. The handle should always be a reusable resource descriptor, allowing for multiple Resource#getInputStream() calls.

Note that a Resource handle does not imply an existing resource; you need to invoke Resource#exists to check for existence.

Parameters:
location - the resource location
Returns:
a corresponding Resource handle
See Also:
CLASSPATH_URL_PREFIX


 

Groovy Documentation