Maximum upload size exceeded; nested exception is java.lang.IllegalStateException
SpringBoot文件上传报错,是因为文件大小超过默认限制,需要配置允许上传的文件的大小。
1.x版本
properties
配置方式
spring.http.multipart.max-file-size=10MB
spring.http.multipart.max-request-size=10MB
yaml
配置方式
spring:
http:
multipart:
max-file-size: 10MB
max-request-size: 10MB
2.x版本
properties
配置方式
spring.servlet.multipart.max-file-size=10MB
spring.servlet.multipart.max-request-size=10MB
yaml
配置方式
spring:
servlet:
multipart:
max-file-size: 10MB
max-request-size: 10MB
配置说明
spring.servlet.multipart.max-file-size
单个文件大小限制spring.servlet.multipart.max-request-size
一次请求中所有上传文件总大小限制