public class FileSystemResourceLoader extends DefaultResourceLoader
ResourceLoader implementation that resolves plain paths as
 file system resources rather than as class path resources
 (the latter is DefaultResourceLoader's default strategy).
 NOTE: Plain paths will always be interpreted as relative to the current VM working directory, even if they start with a slash. (This is consistent with the semantics in a Servlet container.) Use an explicit "file:" prefix to enforce an absolute file path.
org.springframework.context.support.FileSystemXmlApplicationContext
 is a full-fledged ApplicationContext implementation that provides
 the same resource path resolution strategy.
DefaultResourceLoader, 
org.springframework.context.support.FileSystemXmlApplicationContextDefaultResourceLoader.ClassPathContextResourceCLASSPATH_URL_PREFIX| Constructor and Description | 
|---|
| FileSystemResourceLoader() | 
| Modifier and Type | Method and Description | 
|---|---|
| protected Resource | getResourceByPath(String path)Resolve resource paths as file system paths. | 
addProtocolResolver, clearResourceCaches, getClassLoader, getProtocolResolvers, getResource, getResourceCache, setClassLoaderprotected Resource getResourceByPath(String path)
Note: Even if a given path starts with a slash, it will get interpreted as relative to the current VM working directory.
getResourceByPath in class DefaultResourceLoaderpath - the path to the resourceFileSystemResource, 
org.springframework.web.context.support.ServletContextResourceLoader#getResourceByPath