首页
学习
活动
专区
圈层
工具
发布
社区首页 >专栏 >spring boot报错:the field file exceeds its maximum permitted size

spring boot报错:the field file exceeds its maximum permitted size

作者头像
用户12023652
发布2026-07-29 09:20:47
发布2026-07-29 09:20:47
690
举报

在spring boot的上传文件时报错,the field file exceeds its maximum permitted size

原因:上传文件大小超过的tomcat的最大允许范围

解决办法: 在application.yaml文件中,增加两个行配置信息,servlet.multipart.max-file-size

代码语言:javascript
复制
spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://127.0.0.1:3306/xiaobai?serverTimezone=GMT%2b8
    username: root
    password: mysql
  servlet:
    multipart:
      max-file-size: 10MB
      max-request-size: 50MB
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2022-05-02,如有侵权请联系 cloudcommunity@tencent.com 删除
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档