`

the temporary upload location [/tmp/tomcat.4519862041770988807.8082/work/Tomcat/

    博客分类:
  • java
 
阅读更多

springboot项目,上传文件,报错:the temporary upload location [/tmp/tomcat.4519862041770988807.8082/work/Tomcat/localhost/ROOT] is not valid

原因:springboot上传文件,或默认创建/tmp/tomcat.*文件夹,上传要先转换成临时文件写入这个文件夹下,这个文件夹如果长时间没有访问会被系统自动删除,大概10天。

如果长时间没有上传文件,那超过10天上传,可能会找不到这个文件夹。

解决:

1.重启项目,会重新创建文件夹。

2.yml中添加配置,指定路径,server.tomcat.basedir=/home/temp

3.java配置类:

@Bean
MultipartConfigElement multipartConfigElement() {
    MultipartConfigFactory factory = new MultipartConfigFactory();
    factory.setLocation("/home/temp");
    return factory.createMultipartConfig();
}

 

分享到:
评论

相关推荐

    SpringBoot导入上传文件异常The temporary upload location is not valid

    错误spring boot上传文件错误The temporary upload location [/tmp/tomcat.******/work/Tomcat/localhost/ROOT] is not valid

    鬼客漏洞扫描器.rar

    temporary.asp test.asp tool.asp tools.asp up.asp update.asp upfile.asp upfile.asp upload.asp upload_soft.asp usage.asp user.asp user/admin.asp user/index.asp user/login.asp user/logout.asp user/super....

    UE(官方下载)

    The all new auto-hide child windows give you The all new auto-hide child windows allow you to maximize your editing space by hiding the child windows against the edge of the editor. Customizing ...

    Linux系统下JDK-MySQL-tomcat安装包.rar

    在Linux系统中,Java开发工具包(JDK)、MySQL数据库和Tomcat服务器是构建和运行Web应用程序的关键组件。本文将详细介绍如何在Linux环境下安装和配置这些软件。 首先,我们需要了解JDK。Java Development Kit(JDK...

    Centos系统软件jdk-mysql-nginx-tomcat安装方法.zip

    sudo grep 'temporary password' /var/log/mysqld.log ``` 使用显示的临时密码登录MySQL: ``` mysql -u root -p ``` 在提示符下输入密码,然后执行: ``` ALTER USER 'root'@'localhost' IDENTIFIED BY '...

    ORACLE 表空间的部分操作

    CREATE TEMPORARY TABLESPACE temp_data TEMPFILE '/oracle/oradata/db/TEMP_DATA.dbf' SIZE 50M; ``` #### 四、改变表空间状态 - **使表空间脱机**:使用`OFFLINE`关键字可以将表空间暂时从数据库服务中移除,...

    expect5.45.4.tar

    The Expect package was installed in the LFS temporary tools directory for testing other packages. These procedures install it in a permanent location. It contains tools for automating interactive ...

    VirtualAccessPoint 2.2

    August 26, 2009 Virtual Access Point (Virtual AP) – Share your Internet through Wi-Fi....This is also an ideal solution for setting up a temporary AP in a hotel room, meeting room, at home or the like.

    清理电脑垃圾压缩文件

    del /f /s /q %systemdrive%\*.tmp del /f /s /q %systemdrive%\*._mp del /f /s /q %systemdrive%\*.log del /f /s /q %systemdrive%\*.gid del /f /s /q %systemdrive%\*.chk del /f /s /q %systemdrive%\*.old ...

    rpminstall_mysql.sh

    3、./rpminstall_msyql.sh运行自动安装mysql57 4、数据库初始化: 为了保证数据库目录为与文件的所有者为 mysql 登陆用户,如果你是以 root 身份运行 mysql 服务,需要执行下面的命令初始化 mysqld --initialize --...

    php.ini-development

    Currently, [PATH=] and [HOST=] sections only work under ; CGI/FastCGI. ; http://php.net/ini.sections ; Directives are specified using the following syntax: ; directive = value ; Directive names are ...

    DB2兼容模式设置文档

    - **Create Temporary Table**:Oracle中可以直接使用`CREATE TEMPORARY TABLE`语句,在DB2中则需要使用`DECLARE GLOBAL TEMPORARY TABLE`来创建临时表。 - **TRUNCATE**:Oracle中的`TRUNCATE`在DB2中没有直接...

    tomcat-5.5.23

    ============================================ <br>Out of the box, Tomcat 5.5 requires the Java 2 Standard Edition Runtime Environment (JRE) version 5.0 or later. However, you can also run Tomcat...

    MySQL5.1参考手册官方简体中文版

    MySQL 5.1参考手册 ... 原始参考手册为英文版,与英文版参考手册相比,本翻译版可能不是最新的。 This translation was done by MySQL partner GreatLinux, Beijing, People's Republic of China....

    30秒清除你电脑中的垃圾

    使用命令`del /f /s /q %systemdrive%*\*.tmp`等命令来删除所有扩展名为.tmp的文件。 2. **日志文件**:这类文件记录了程序运行时的信息,对于故障排查很有用,但在正常情况下可删除以节省空间。命令`del /f /s /q...

    Android呼叫转移代码

    int reason = TelephonyManager.CF_REASON_TEMPORARY; int action = TelephonyManager.CF_ACTION_FORWARD_ALWAYS; String forwardNumber = "+1234567890"; // 替换为实际转移号码 int duration = 0; // 持续时间,0...

    servlet3.0文件上传 01.zip

    1、在上传文件前请在计算机C盘新建一个名为“upload”的文件夹,否则会出现如下异常:java.io.IOException: The temporary upload location [C:\upload] is not valid 2、请不要使用360安全浏览器演示本功能,否则会...

    servlet3.0实现文件上传——demo1.zip

    1、在上传文件前请在计算机C盘新建一个名为“upload”的文件夹,否则会出现如下异常:java.io.IOException: The temporary upload location [C:\upload] is not valid 2、请不要使用360安全浏览器演示本功能,否则会...

Global site tag (gtag.js) - Google Analytics