Spring Boot做文件上传时出现了The field file exceeds its maximum permitted size of 1048576 bytes.错误
Posted 蜀山鸭梨大
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot做文件上传时出现了The field file exceeds its maximum permitted size of 1048576 bytes.错误相关的知识,希望对你有一定的参考价值。
Spring Boot各版本文档地址:https://docs.spring.io/spring-boot/docs/
官方文档表示,每个文件的配置最大为1Mb,单次请求的文件的总数不能大于10Mb,需要修改这个默认值需要在配置文件里进行配置
Spring Boot2.0之后的版本配置如下: spring.servlet.multipart.max-file-size = 10MB spring.servlet.multipart.max-request-size=100MB
以上是关于Spring Boot做文件上传时出现了The field file exceeds its maximum permitted size of 1048576 bytes.错误的主要内容,如果未能解决你的问题,请参考以下文章
Spring Boot怎么处理上传文件时出现的MultipartException
Spring Boot怎么处理上传文件时出现的MultipartException
Maven使用package打包Spring Boot时出现:Unable to find a single main class from the following candidates的问题解决