码迷,mamicode.com
首页 > 编程语言 > 详细

Spring之ResourceLoader加载资源

时间:2016-06-07 14:25:37      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:

Resource与ResourceLoader对比

1、Resource接口定义了应用访问底层资源的能力。

  • 通过FileSystemResource以文件系统绝对路径的方式进行访问;
  • 通过ClassPathResource以类路径的方式进行访问;
  • 通过ServletContextResource以相对于Web应用根目录的方式进行访问。

  在获取资源后,用户就可以通过Resource接口定义的多个方法访问文件的数据和其他的信息:如可以通过getFileName()获取文件名,通过getFile()获取资源对应的File对象,通过getInputStream()直接获取文件的输入流。此外,还可以通过createRelative(String relativePath)在资源相对地址上创建新的文件。

2、ResourceLoader接口提供了一个加载文件的策略。它提供了一个默认的实现类DefaultResourceLoader,获取资源代码如下:

 1 @Override
 2 public Resource getResource(String location) {
 3     Assert.notNull(location, "Location must not be null");
 4     if (location.startsWith("/")) {
 5         return getResourceByPath(location);
 6     }
 7     else if (location.startsWith(CLASSPATH_URL_PREFIX)) {
 8         return new ClassPathResource(location.substring(CLASSPATH_URL_PREFIX.length()), getClassLoader());
 9     }
10     else {
11         try {
12             // Try to parse the location as a URL...
13             URL url = new URL(location);
14             return new UrlResource(url);
15         }
16         catch (MalformedURLException ex) {
17             // No URL -> resolve as resource path.
18             return getResourceByPath(location);
19         }
20     }
21 }

 

1 protected Resource getResourceByPath(String path) {
2     return new ClassPathContextResource(path, getClassLoader());
3 }

 

Spring之ResourceLoader加载资源

标签:

原文地址:http://www.cnblogs.com/luyanliang/p/5566574.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!