springboot 上传文件设置文件大小限制

 报错内容:

org.springframework.web.multipart.MaxUploadSizeExceededException: 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 (39353107) exceeds the configured maximum (10485760)

解决方案:

spring:
  servlet:
    multipart:
      max-request-size: 100MB
      max-file-size: 100MB

猜你喜欢

转载自blog.csdn.net/qq_35387940/article/details/107337837