美文网首页
SpringBoot 2X 对上传图片大小的限制(org.spr

SpringBoot 2X 对上传图片大小的限制(org.spr

作者: wyn_做自己 | 来源:发表于2023-03-09 16:09 被阅读0次

    今日份鸡汤:无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,毁掉你本就不多的热情和定力~

    报错信息:

    ExceptionConfig error,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 (1285848) exceeds the configured maximum (1048576),ResultEnum:system error
    
    

    出现此问题的spring boot版本spring boot2X
    原来是文件大小超出了1M,spring boot 默认限制最大为1M

    解决方案:

    在 application.properties 添加如下配置

    spring.servlet.multipart.max-file-size=30MB
    spring.servlet.multipart.max-request-size=30MB
    

    也给一下yml文件的配置吧

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

    相关文章

      网友评论

          本文标题:SpringBoot 2X 对上传图片大小的限制(org.spr

          本文链接:https://www.haomeiwen.com/subject/vgoaldtx.html