1.springboot1.x 版本
spring.http.multipart.max-file-size=100MB
spring.http.multipart.enabled=true
2.springboot2.x 版本
spring.servlet.multipart.enabled=true
spring.servlet.multipart.file-size-threshold=0
#Maxfilesize.
spring.servlet.multipart.max-file-size=20MB
#Maxrequestsize.
spring.servlet.multipart.max-request-size=30MB
#设定Httppost数据大小
server.tomcat.max-http-post-size=-1
[springboot升级2后文件上传引起的坑
https://www.jianshu.com/p/819c3dfdfd0d
网友评论