标签:max enable enabled size 文件 大小 Servle 上传 art
在springboot2.0上面配置上传文件大小
1、application.properties
spring.servlet.multipart.max-file-size=50Mb
spring.servlet.multipart.max-request-size=200Mb
2、application.yml
spring:
servlet:
multipart:
enabled: true
max-file-size: 20MB
max-request-size: 200MB
标签:max enable enabled size 文件 大小 Servle 上传 art
原文地址:https://www.cnblogs.com/liabin/p/11590542.html