乐趣区

关于java: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
退出移动版