org.springframework.web.multipart.MaxUploadSizeExceededException: Maximum upload size exceeded;

接口上传文件,文件超过默认大小报错 信息:org.springframework.web.multipart.MaxUploadSizeExceededException: Maximum upload size exceeded;

解决方法:
在 springboot的配置文件 yml 中 添加下方配置信息

spring
  servlet:
    multipart:
      max-file-size: 10MB #单个最大文件大小
      max-request-size: 10MB #总上传的最大数据大小
上一篇:上传文件Request processing failed;nested exception is org.springframework.web.multipart.MultipartExcepti


下一篇:SpringBoot2 中 spring.http.multipart.max-file-size 报错问题