Maximum upload size exceeded; nested exception is java.lang.IllegalStateException

springboot文件上传报错,因为文件大小超过限制,需要配置允许上传的文件的大小。

2.x

spring.servlet.multipart.max-file-size=10MB
spring.servlet.multipart.max-request-size=10MB

之前的版本

spring.http.multipart.max-file-size=10MB
spring.http.multipart.max-request-size=10MB

max-file-sizemax-request-size的区别在于:
max-file-size:单个文件大小限制
max-request-size:一次请求中所有上传文件总大小限制

猜你喜欢

转载自blog.csdn.net/hqqqqqqq555/article/details/105491173