The field file exceeds its maximum permitted size of 1048576 bytes 文件上传大小受到限制,报错!!

简介: The field file exceeds its maximum permitted size of 1048576 bytes 文件上传大小受到限制,报错!!

1:这是一个文件上传时的错误

提示上传的文件大小超过了允许的最大值。要解决这个问题,可以采取以下方法:

增加文件上传大小限制:修改文件上传组件的配置,将允许上传的文件大小调整为更大的值。

减小上传文件的大小:可以通过压缩文件或者裁剪不必要的部分来减小文件的大小,在上传之前先进行处理。

分块上传:将文件拆分成多个小块,分别上传,然后在服务器端重新合并成完整的文件。

使用第三方文件上传服务:有些云服务商提供了专门的文件上传服务,可以替代传统的文件上传方式,避免出现文件大小超限的问题。

2:解决方法:

Spring Boot项目,可以在application.properties或application.yml文件中进行配置。具体地,在application.properties文件中,可以添加以下配置:

一、在application.properties文件中设置文件大小

// 设置单个文件大小
spring.servlet.multipart.max-file-size= 50MB
// 设置单次请求文件的总大小
spring.servlet.multipart.max-request-size= 50MB

二、取消文件大小限制。

2.1  application.properties

spring.servlet.multipart.max-file-size=-1
spring.servlet.multipart.max-request-size=-1

2.2 application.yml

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

效果图:

0aa6021e5d96416e806dfdcfa5afc49d.png

目录
相关文章
|
3月前
|
JSON PHP 数据格式
PHP Allowed memory size of 134217728 bytes exhausted (tried to allocate 10489856 bytes)
PHP Allowed memory size of 134217728 bytes exhausted (tried to allocate 10489856 bytes)
67 2
|
5月前
|
区块链
max code size exceeded
max code size exceeded
62 6
|
Java 应用服务中间件
【异常】The field file exceeds its maximum permitted size of 1048576 bytes.
【异常】The field file exceeds its maximum permitted size of 1048576 bytes.
161 0
|
6月前
|
Docker 容器
devmapper: Thin Pool has 162394 free data blocks which is less than minimum required 163840 free dat
devmapper: Thin Pool has 162394 free data blocks which is less than minimum required 163840 free dat
47 0
|
Java 应用服务中间件
The field file exceeds its maximum permitted size of 1048576 bytes.
The field file exceeds its maximum permitted size of 1048576 bytes.
|
缓存 数据可视化
'dict' object has no attribute '_txn_read_preference' && Sort exceeded memory limit of 10485760
'dict' object has no attribute '_txn_read_preference' && Sort exceeded memory limit of 10485760
210 0
|
前端开发 Java 关系型数据库
记录:The field files exceeds its maximum permitted size of 1048576 bytes...【亲测有效】
记录:The field files exceeds its maximum permitted size of 1048576 bytes...【亲测有效】
1127 0