前言
在 springboot 中文件上传时控制台报错如下,很明显是上传的文件问题,因为上传的文件大小超过了默认限制的限制大小。
因为 springboot 默认单个文件上传大小是1MB,默认多个文件上传总大小是10MB。
Resolved [org.springframework.web.multipart.MaxUploadSizeExceededException:
Maximum upload size exceeded; nested exception is java.lang.IllegalStateException: org.apache.tomcat.util.http.fileupload.impl.FileSizeLimitExceededException:
The field file exceeds its maximum permitted size of 1048576 bytes.]
解决
在 application.yml 文件中设置上传文件的大小
spring:
servlet:
multipart:
max-file-size: 10MB #单个文件最大限制
max-request-size: 50MB #多个文件最大限制