SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes

Posted John_2011

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes相关的知识,希望对你有一定的参考价值。

现象:

在 SpringBoot 项目中进行文件上传时,由于之前都是使用的小文件来测试,并没有出现问题,也就没有考虑到文件上传大小限制的问题,今天在处理视频上传时,提示下面的错误:

org.apache.tomcat.util.http.fileupload.impl.FileSizeLimitExceededException: The field file exceeds its maximum permitted size of 1048576 bytes.

原因:

根据提示,发现是文件太大,超出了默认的最大上传限制(默认是 1MB 的文件大小限制)。

解决办法:

查看文档发现,SpringBoot 2.x 中,只需要修改配置文件,就可以解决该错误。下面是 yml 格式的配置文件

spring:
  servlet:
    multipart:
      max-file-size: 50MB
      enabled: true

修改其中的 spring.servlet.multipart.max-file-size 为项目中所需的最大上传文件大小限制即可。重启项目,再上传 50MB 以内的文件就不会出现报错了。

以上是关于SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot 2.x :文件上传

关于springboot上传文件报错:The temporary upload location ***is not valid

SpringBoot 2.x版本+MultipartFile设置指定文件上传大小

将 Spring Boot 从 1.x 升级到 2.x 后出现错误 com.microsoft.sqlserver.jdbc.SQLServerException: The "variant

springboot项目上传文件出现临时文件目录为空

Springboot+HTML5+Layui2.7.6上传文件请求上传接口出现异常