springboot 上传文件过大 Maximum upload size exceeded 解决办法
Posted 初窥门径
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot 上传文件过大 Maximum upload size exceeded 解决办法相关的知识,希望对你有一定的参考价值。
上传文件时出现以下错误:
Maximum upload size exceeded; nested exception is java.lang.IllegalStateException: org.apache.tomcat.util.http.fileupload.impl.FileSizeLimitExceededException: The field file exceeds its maximum permitted size of 10485760 bytes.
修改配置文件,增加上传文件大小
springboot2.0以上配置:
spring:
# 文件上传
servlet:
multipart:
# 单个文件大小
max-file-size: 100MB
# 设置总上传的文件大小
max-request-size: 200MB
以上是关于springboot 上传文件过大 Maximum upload size exceeded 解决办法的主要内容,如果未能解决你的问题,请参考以下文章