Spring资源访问
资源访问接口
由于JDK提供的资源访问类并不能很好的满足底层资源的访问需求,所以Spring设计了一个Resource接口。Spring框架使用Resource装载各种资源,包括配置文件资源、国际化属性文件资源等
Resource具体的实现类图
Resource接口的主要方法
- boolean exists():判断资源是否存在
- boolean isOpen:判断资源是否打开
- URL getURL() :该方法返回底层资源对应的URL
- File getFile():该方法返回底层对应的一个文件
- InputStream getInputStream():该方法返回资源对应的输入流
Resource接口的实现类
-
WritableResource:可写资源,是Spring 3.1提供的接口,有 三个实现类,即PathResource,FileSystemResource和FileUrlResource,其中PathResource从Spring 5.1.1开始遗弃,更倾向于与使用FileSystemResource。
-
ByteArraResource:二进制数组表示的资源,二进制数组资源可以在内存中通过程序构造
-
ClassPathResource:类路径下的资源,资源以相对类路径的方式表示
-
FileSystemResource:文件系统资源,资源以文件系统路径的方式表示
-
InputStreamResource:以输入流返回表示的资源
-
ServletContextResource:为访问web容器上下文中得资源而设计的类,负责以相对于web应用根目录的路径加载资源,支持以流和URL的方式访问,在WAR解包的情况下,亦可以通过File方式访问,还可以直接从JAR包中访问资源
-
UrlResource:URL封装了java.netURL,它使用户能够访问任何可以通过URL表示的资源,如文件系统的资源,HTTP资源,FTP资源等。
Resource加载资源代码
用户可以根据自己的需要,选择合适的Resource实现类来访问资源。
采用ClassPathResource()加载资源
public class ResourceMain {
public static void main(String[] args) throws Exception{
Resource resource=new ClassPathResource("resource/conf.txt");
InputStream inputStream = resource.getInputStream();
ByteArrayOutputStream bts=new ByteArrayOutputStream();
int i;
while ((i=inputStream.read())!=-1){
bts.write(i);
}
System.out.println(bts.toString());
System.out.println(resource);
}
}
资源加载
Spring提供了一个强大的加载资源机制,不但能够通过“classpath:”、“file”等资源地址前缀识别不同的资源类型,还支持Ant风格带通配符的资源地址。
资源地址表达式
地址前缀 | 示例 | 对应的资源类型 |
---|---|---|
classpath: | classpath:conf/conf.xml | 从类路径中加载资源,classpath:和classpath:/是等价的,都是相对于类的根路径。资源文件可以在标准的文件系统中,也可以在JAR或ZIP的类中。 |
file | file:/conf/conf.xml | 使用UrlResource从文件系统目录中装载资源,可以用绝对路径或相对路径 |
http:// | http://www.example.com/conf.xml | 使用UrlResource从web服务器中装载资源 |
ftp:// | ftp://www.example.com/conf.xml | 使用UrlResource从FTP服务器中装载资源 |
没有前缀 | conf/conf.xml | 根据ApplicationContext的具体实现类采用对应类型的Resource |
同时资源加载还支持Ant风格的资源地址
Ant风格的资源地址支持3中匹配
-
?:匹配文件名中的一个字符
-
*:匹配文件中的任意字符
-
**:匹配多层路径
如下示例:
classpath:com/con?.xml:匹配com路径下的com/conf.xml、com/cont.xml等文件
classpath:com/*.xml:匹配com路径下的所有的xml文件
classpath:com/**/a.xml:匹配com路径下其他文件夹下的所有的a.xml文件
资源加载器
Spring定义的一套资源加载的接口:如下
ResourceLoader:的getResource(String location)方法,根据一个资源的地址加载文件资源。下面PathMatchingResourcePatternResolver是Spring提供的标准实现类
public class PathMatchingResourcePatternResolverMain {
public static void main(String[] args) throws Exception{
ResourcePatternResolver resolver=new PathMatchingResourcePatternResolver();
Resource resource [] = resolver.getResources("classpath*:**/*.txt");
for (Resource resource1 : resource) {
System.out.println(resource1.getDescription());
}
}
}
上面代码,PathMatchingResourcePatternResolver将会扫描所有类路径下及JAR包中对应的以.txt结尾的后缀资源文件。