springBoot文件上传大小限制

在application中添加限制 :

在springBoot  1.x 版本下使用

spring.http.multipart.max-file-size =100M

spring.http.multipart.max-request-size =100M

在springBoot  2.x 版本下使用:

spring.servlet.multipart.max-file-size =100M

spring.servlet.multipart.max-request-size =100M

 

在yml下配置:

在 springboot 1.X 版本下
spring:
http:
multipart:
enabled: true
max-file-size: 50MB
max-request-size: 50MB


在 springboot 2.X 版本下
spring:
servlet:
multipart:
enabled: true
max-file-size: 50MB
max-request-size: 50MB

posted @ 2021-03-26 16:11  凉了记忆  阅读(1341)  评论(0编辑  收藏  举报