欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

spring boot 文件上传大小限制

程序员文章站 2022-10-06 16:31:10
错误信息 : Spring Boot:The field file exceeds its maximum permitted size of 1048576 bytes. 解决方法一:在启动类添加如下代码: @Bean public MultipartConfigElement multipart ......

错误信息 :

  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 文件上传大小限制

 

解决方法二:根据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

 

spring boot 文件上传大小限制

 

**************************************************************************************************

multipart.maxfilesize=10mb是设置单个文件的大小,

multipart.maxrequestsize=100mb是设置单次请求的文件的总大小

如果是想要不限制文件上传的大小,那么就把两个值都设置为-1


**************************************************************************************************

*********注意:由于版本更新迭代快,如果以上的配置有误,请以spring boot的官方文档为准。*********

 

spring boot 各版本文档地址(比较齐全)       

进入reference/html/目录就是了哈

 

**************************************************************************************************