美文网首页
springboot文件上传到指定目录 【一张图看懂如何配置】

springboot文件上传到指定目录 【一张图看懂如何配置】

作者: IT宝哥哥 | 来源:发表于2020-04-21 12:03 被阅读0次

    文档:https://docs.spring.io/spring-boot/docs/2.1.13.RELEASE/reference/html/boot-features-developing-web-applications.html#boot-features-spring-mvc-static-content
    参考:https://www.jianshu.com/p/ae320ca00cc3

    什么是静态资源路径?

    静态资源路径是指系统可以直接访问的路径,且路径下所有文件均可被用户直接读取。
    在springboot中默认的静态资源路劲有:classpath:/META-INF/resources/ , classpath:/static/ , classpath:/public/ , classpath:/resources/
    从这里看出这里的静态资源都在classpath下

    那么问题来了,如果上传的文件放在上述的文件夹中会有怎样的后果?
    1 网站的数据和代码不能有效分离
    2 当项目打成jar包,上传的图片会增加jar的大小,运行效率降低
    3 网站数据备份变得复杂

    将自定义的外部目录,挂载为静态目录

    此时可以将静态资源路径设置到磁盘的某个目录
    1 在springboot中可以直接在配置文件中覆盖默认的静态资源路径的配置信息:

    application.properties配置如下:
    web.upload-path=D:/temp/images/
    springboot.mvc.static-path-pattern=/**
    spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/static,classpath:/resources/,file:{web.upload-path}
    
    

    注意: 这个web.upload-path是属于自定义的一个属性,指定一个路径,注意要以/结尾;
    spring.mvc.static-path-parttern=/** 表示所有的访问经过静态资源路径
    spring.resources.static-locations在这里配置静态资源路径,前面说了这里的配置是覆盖默认配置,所以需要加上默认的,否则static,public这些路径
    将不能被当作静态资源路径,在这个末尾的file:{web.upload-path}之所以加file:是因为指定的是一个具体的硬盘路径,classpath指系统环境变量

    处理文件上传的挂载目录, 并且以自定义的URI访问上传的文件

    通过静态资源配置类实现,继承WebMvcConfigurerAdapter

    package com.sam.demo.conf;
    
    import org.springframework.context.annotation.Configuration;
    import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
    import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
    //以下配置来自原文,`WebMvcConfigurerAdapter `类已不建议使用,如果不配置的话直接访问图片不带static
    /**
     * 配置静态资源映射
     * @author sam
     * @since 2017/7/16
     */
    @Configuration
    public class WebMvcConfig extends WebMvcConfigurerAdapter {
    
        @Override
        public void addResourceHandlers(ResourceHandlerRegistry registry) {
            //将所有/static/** 访问都映射到classpath:/static/ 目录下
    
    //addResourceLocations的每一个值必须以'/'结尾,否则虽然映射了,但是依然无法访问该目录下的的文件(支持: classpath:/xxx/xx/, file:/xxx/xx/, http://xxx/xx/)
            registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/");
        }
    }
    
    

    重启项目,访问:http://localhost:8080/static/c.jpg 能正常访问static目录下的c.jpg图片资源

    springboot项目获取文件的绝对路径

    获取根目录

    File path=new File(ResourceUtils.getURL("classpath:").getPath());
    if(!path.exists()){
        path=new File("");
    }
    
    

    //如果上传目录为/static/images/upload/,则可以如下获取

    File upload=new File(path.getAbsolutePath(),"static/images/uplaod/");
    if(!upload.exists()){
         upload.mkdirs();
         System.out.println(upload.getAbsolutePath());
         //在开发测试模式时,得到地址为:{项目跟目录}/target/static/images/upload/
        //在打成jar正式发布时,得到的地址为:{发布jar包目录}/static/images/upload/
    }
    
    

    注意点

    另外使用以上代码需要注意,因为以jar包发布时,我们存储的路径是与jar包同级的static目录,因此我们需要在jar包目录的application.properties配置文件中设置静态资源路径,如下所示:

    #设置静态资源路径
    spring.resources.static-locations=classpath:static/,file:static/
    
    一张图看懂如何配置

    相关文章

      网友评论

          本文标题:springboot文件上传到指定目录 【一张图看懂如何配置】

          本文链接:https://www.haomeiwen.com/subject/hdhuihtx.html