类 FileSystemResourceLoader
java.lang.Object
cn.taketoday.core.io.DefaultResourceLoader
cn.taketoday.core.io.FileSystemResourceLoader
- 所有已实现的接口:
ResourceLoader
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.
- 从以下版本开始:
- 4.0 2022/2/20 16:39
- 作者:
- Juergen Hoeller, Harry Yang
- 另请参阅:
-
嵌套类概要
从类继承的嵌套类/接口 cn.taketoday.core.io.DefaultResourceLoader
DefaultResourceLoader.ClassPathContextResource -
字段概要
从接口继承的字段 cn.taketoday.core.io.ResourceLoader
CLASSPATH_URL_PREFIX -
构造器概要
构造器 -
方法概要
修饰符和类型方法说明protected ResourcegetResourceByPath(String path) Resolve resource paths as file system paths.从类继承的方法 cn.taketoday.core.io.DefaultResourceLoader
addProtocolResolver, clearResourceCaches, getClassLoader, getProtocolResolvers, getResource, getResourceCache, setClassLoader
-
构造器详细资料
-
FileSystemResourceLoader
public FileSystemResourceLoader()
-
-
方法详细资料
-
getResourceByPath
Resolve resource paths as file system paths.Note: Even if a given path starts with a slash, it will get interpreted as relative to the current VM working directory.
- 覆盖:
getResourceByPath在类中DefaultResourceLoader- 参数:
path- the path to the resource- 返回:
- the corresponding Resource handle
- 另请参阅:
-
FileSystemResourcecn.taketoday.web.context.support.ServletContextResourceLoader#getResourceByPath
-