SpringBoot文件上传大小限制修改

发布时间 2023-04-15 16:13:33作者: 视觉工作室-NASK-Arya

springboot默认文件上传大小限制为10M

如需修改可以参考下面的配置文件

spring.servlet.multipart.max-file-size=20MB
spring.servlet.multipart.max-request-size=20MB

配置说明:This configuration sets the maximum allowed size for both individual files and the entire request to 20 MB.