springboot上传文件出现 The field file exceeds its maximum permitted size of 1048576 bytes错误
原因是因为SpringBoot内嵌tomcat默认所能上传的文件大小为1M,超出这个就会报错。
一、适用于springboot1.x
1 | #springboot2.x使用这个无效 |
二、适用于springboot2.x
1 | ##springboot1.x使用这个无效 |
三、编写配置类
1 | import javax.servlet.MultipartConfigElement; |
- 本文作者: LGodv
- 本文链接: http://example.com/2021/03/09/解决springboot文件上传超过限制错误/
- 版权声明: 本博客所有文章除特别声明外,均采用 MIT 许可协议。转载请注明出处!