首页  

spring资源Resource接口     所属分类 spring 浏览量 1131
org.springframework.core.io.Resource

public interface Resource extends InputStreamSource {


ByteArrayResource
ClassPathResource
FileSystemResource
UrlResource


资源类型地址前缀

classpath 
   classpath:com/dyyx/test.xml
   classpath:和classpath:/ 等价
   
File 
file:/com/dyyx/test.xml

http://www.codefun007.xyz/test.html

ftp://www.codefun007.xyz/test.txt


ant风格匹配符
?  匹配一个字符
*  匹配任意字符
** 匹配多层路径

classpath:com/a*bc.xml
file:d:/config/*.xml
classpath:com/**/test.xml
classpath:org/springfranework/**/*.xml

上一篇     下一篇
java NIO selector

缓存雪崩穿透预热更新降级

服务器性能指标介绍

oauth2.0要点

网络问题排查要点

java逃逸分析和TLAB及对象分配过程