文章目录
- 前言
- 一、原因分析
- 二、解决方案
- 1.nginx配置文件
- 2.application.yml配置文件
- 总结
前言
在上传文件时,如果没有做一些配置的话,会导致上传失败:413 Request Entity Too Large 或者 Maximum upload size exceeded。
提示:以下是本篇文章正文内容,下面案例可供参考
一、原因分析
在默认配置下,nginx、spring 等默认的都是 1m 大小的限制
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 1048576 bytes.
二、解决方案
1.nginx配置文件
- 错误:413 Request Entity Too Large
在http下加上配置:client_max_body_size 50m; 限制50m大小
http {include /etc/nginx/mime.types;server {listen 80;# ...}# 加上配置:client_max_body_size 50m; client_max_body_size 50m; include /etc/nginx/conf.d/*.conf;
}
2.application.yml配置文件
- 错误:Maximum upload size exceeded; The field file exceeds its maximum permitted size of 1048576 bytes.
在application.yml中的spring下增加如下配置,限制50m大小,若是.properties:spring.servlet.multipart.max-file-size=50MB
spring:servlet:multipart:max-file-size: 50MBmax-request-size: 50MB
总结
心灵就像一块沃土,播下什么种子,就会开出什么花朵,只有积极耕耘,才能收获美好。