public interface ResourceLoader
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.
| 限定符和类型 | 字段和说明 |
|---|---|
static String |
CLASSPATH_URL_PREFIX
Pseudo URL prefix for loading from the class path: "classpath:"
|
| 限定符和类型 | 方法和说明 |
|---|---|
ClassLoader |
getClassLoader()
Expose the ClassLoader used by this ResourceLoader.
|
Resource |
getResource(String location)
Return a Resource handle for the specified resource.
|
Resource getResource(String location)
InputStreamSource.getInputStream() calls.
Note that a Resource handle does not imply an existing resource;
you need to invoke Resource.exists() to check for existence.
location - the resource locationCLASSPATH_URL_PREFIXClassLoader getClassLoader()
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.
null if even the system
ClassLoader isn't accessible)Copyright © 2016. All rights reserved.