• SpringBoot项目的The temporary upload location ***is not valid 问题


    springboot项目,部署到服务器后,运行一段时间后,处理一些文件上传的接口时,后报异常。

    Could not parse multipart servlet request; nested exception is java.io.IOException: The temporary upload location [/tmp/tomcat.7333297176951596407.9000/work/Tomcat/localhost/ROOT] is not valid。

    查阅资料后,发现是centos对'/tmp'下文件自动清理的原因。

    在springboot项目启动后,系统会在‘/tmp’目录下自动的创建几个目录(我的项目是以下的文件夹):

           1, hsperfdata_root,

            2,tomcat.************.8080,(结尾是项目的端后)

           3,tomcat-docbase.*********.8080。

    Multipart(form-data)的方式处理请求时,默认就是在第二个目录下创建临时文件的。
      这篇文章对自动清理文件有很好的说明http://blog.51cto.com/kusorz/2051877?utm_source=oschina-app。

    处理方式:改变临时文件的存储路径。如下:

    @Configuration
    public class MultipartConfig {

        /**
         * 文件上传临时路径
         */
        @Bean
        MultipartConfigElement multipartConfigElement() {
            MultipartConfigFactory factory = new MultipartConfigFactory();
            String location = System.getProperty("user.dir") + "/data/tmp";
            File tmpFile = new File(location);
            if (!tmpFile.exists()) {
                tmpFile.mkdirs();
            }
            factory.setLocation(location);
            return factory.createMultipartConfig();
        }
    }

  • 相关阅读:
    代理工具介绍
    Cookie 相关
    在JavaScript 使用命名空间
    oracle rank()用法
    sql update 特殊用法
    Repeat 嵌套绑定
    .net 中隐式事务和显示事务的用法
    为站点添加迅雷下载和快车下载
    缺少MSVCR71.DLL解决方式
    关于AppFabric Caching的学习摘录
  • 原文地址:https://www.cnblogs.com/zhuyeshen/p/12677758.html
Copyright © 2020-2023  润新知