SpringBoot文件上传大小限制修改
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.
本文来自博客园,作者:视觉工作室-NASK-Arya,转载请注明原文链接:https://www.cnblogs.com/llp2333/p/17321311.html