今日份鸡汤:无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,毁掉你本就不多的热情和定力~
报错信息:
ExceptionConfig error,Maximum upload size exceeded; nested exception is java.lang.IllegalStateException: org.apache.tomcat.util.http.fileupload.impl.SizeLimitExceededException: the request was rejected because its size (1285848) exceeds the configured maximum (1048576),ResultEnum:system error
出现此问题的spring boot版本spring boot2X
原来是文件大小超出了1M,spring boot 默认限制最大为1M
解决方案:
在 application.properties 添加如下配置
spring.servlet.multipart.max-file-size=30MB
spring.servlet.multipart.max-request-size=30MB
也给一下yml文件的配置吧
spring:
servlet:
multipart:
max-file-size: 1MB
max-request-size: 1MB
网友评论