zoukankan      html  css  js  c++  java
  • 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形式
  • 相关阅读:
    3.java开发环境配置
    2.java主要特性
    1.java中main函数理解
    测试项目团队角色岗位职责
    单身程序员
    软件测评师考试
    vue父子组件通信
    python偏函数使用
    Numpy+Pandas读取数据
    chrome无界面模式headless配置
  • 原文地址:https://www.cnblogs.com/zuiyue_jing/p/9985578.html
Copyright © 2011-2022 走看看