【Spring Boot】The field dropzFile exceeds its maximum permitted size of 1048576 bytes.

在使用 Spring Boot 文件上传是发现,小的文件的可以上传,但是上传稍微大的文件就会报错:

在这里插入图片描述
意思是文件的大小超出了允许的范围,这个大小应该是不允许超过 1 Mb。

查阅官方文档发现,可以设置文件上传的大小:

在这里插入图片描述

解决办法:

bootstrap.yml 中加入两个配置:

spring.servlet.multipart.max-file-size = 10Mb  
spring.http.multipart.max-request-size = 100Mb  

猜你喜欢

转载自blog.csdn.net/qq_37581282/article/details/88267931