Java标准的java.net.URL和标准的处理URL前缀的处理对于获取低层级的资源远远不够。比如:无法获取classpath , ServletContext的资源。
Spring的Resource接口对于获取低级资源更有用。
内置的资源实现
1. UrlResource
通过URL方式获取。 文件, http地址, FTP地址等
2. ClassPathResource
3. FileSystemResource
4. SevletContextResource
5.InputStreamResource
6. ByteArrayResource
ResourceLoader
实现ResourceLoader接口可以返回Resource实例。
Prefix
Example
Explanation
classpath:
classpath:com/myapp/config.xml
Loaded from the classpath.
file:
file:///data/config.xml
Loaded as a URL, from the filesystem. [3]
http:
http://myserver/logo.png
Loaded as a URL.
(none)
/data/config.xml
Depends on the underlying ApplicationContext.
2.5 ResourceLoaderAware接口
一个特殊标识的接口, 获取ResourceLoader的引用。
- 空白目录
- 0.环境准备
- 0.1基于maven的工程创建
- 1.控制反转容器
- 1.1 Spring控制反转容器和beans介绍
- 1.2 容器概览
- 1.3 Bean概览
- 1.4 依赖
- 1.5 Bean的范围
- 1.6 客制bean的特性
- 1.7 Bean定义的继承
- 1.8 容器扩展点
- 1.9 基于注解的容器配置
- 1.10 类路径扫描及组件管理
- 1.11 使用JSR 330标准的注解
- 1.12 基于Java的容器配置
- 1.12.1 基本概念: @Bean 和 @Configuration
- 1.13 环境抽象化
- 1.14 注册一个LoadTimeWeaver
- 1.15 ApplicationContext的附加功能
- 1.16 BeanFactory
- 2. 资源
- 3. 验证,数据绑定和类型转换
- 4. Spring表达式语言(SpEL)
- 5. Spring面向方面的切面编程
- 6. Spring AOP 接口
- 7. 空安全
- 8. 数据缓冲和编码
- 9. 附录