Spring 学习——Resources接口

Resources

  • 针对资源文件的统一接口
  • Resources
    • UrlResource:URL对应的资源,只需要一个url即可构建
    • ClassPathResource:获取类路径下的资源文件
    • FileSystemResource:获取文件系统里面的资源
    • ServletContextResource:ServletContext封装的资源,用于访问ServletContext环境下的资源
    • InputStreamResource:针对于输入流封装的资源
    • ByteArrayResource:针对于字节数组封装的资源
  • ResourceLoader
    • All application contexts implements the ResourceLoader interface,and therefore all application contexts may be used to obtain Resources Instances
      public interface Resource{
           Resource getResource(String location);           
      }
      
      Example
      Resource resource1=ctx.getResource("some/location/myTemplate.txt");
      Resource resource2=ctx.getResource("classpath:some/location/myTemplate.txt");
      Resource resource3=ctx.getResource("file:/some/location/myTemplate.txt");
    • Location形式
posted @   话·醉月  阅读(261)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
· DeepSeek 开源周回顾「GitHub 热点速览」
点击右上角即可分享
微信分享提示