spring boot 文件上传大小限制
错误信息 :
spring boot:the field file exceeds its maximum permitted size of 1048576 bytes.
解决方法一:在启动类添加如下代码:
@bean
public multipartconfigelement multipartconfigelement() {
multipartconfigfactory factory = new multipartconfigfactory();
//单个文件最大
factory.setmaxfilesize("10240kb"); //kb,mb
// 设置总上传数据总大小
factory.setmaxrequestsize("102400kb");
return factory.createmultipartconfig();
}
解决方法二:根据spring boot 版本不同在application文件添加不同的配置
spring boot 1.3 或之前的版本,配置:
multipart.maxfilesize = 100mb
multipart.maxrequestsize=150mb
spring boot 1.4 版本后配置更改为:
spring.http.multipart.maxfilesize = 100mb
spring.http.multipart.maxrequestsize = 150mb
spring boot 2.0 之后的版本配置修改为: 单位mb改为mb了
spring.servlet.multipart.max-file-size = 100mb
spring.servlet.multipart.max-request-size = 150mb
**************************************************************************************************
multipart.maxfilesize=10mb是设置单个文件的大小,
multipart.maxrequestsize=100mb是设置单次请求的文件的总大小
如果是想要不限制文件上传的大小,那么就把两个值都设置为-1
**************************************************************************************************
*********注意:由于版本更新迭代快,如果以上的配置有误,请以spring boot的官方文档为准。*********
spring boot 各版本文档地址(比较齐全)
进入reference/html/目录就是了哈
**************************************************************************************************
上一篇: python学习之路(1)
下一篇: SEO一般有哪些步骤或环节?
推荐阅读
-
使用Spring boot + jQuery上传文件(kotlin)功能实例详解
-
PHP 文件上传限制问题
-
Spring Boot Maven 打包可执行Jar文件的实现方法
-
Spring boot的上传图片功能实例详解
-
Microsoft Windows 2008 Server R2 iis7.5上传文件限制200K更改
-
spring boot thymeleaf 图片上传web项目根目录操作步骤
-
javascrip客户端验证文件大小及文件类型并重置上传
-
详解spring boot starter redis配置文件
-
spring boot 打jar包,获取resource路径下的文件
-
PHP设置图片文件上传大小的具体实现方法