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

 

你可能感兴趣的:(错误处理,跟我一起玩转,SpringBoot)