springboot 设置文件上传大小

springboot 1.5X 设置 

spring:
  http:
    multipart:
      enabled: true # 启用
      maxFileSize: 2MB #单文件上传最大大小,默认1Mb
      maxRequestSize: 20MB #多文件上传时最大大小,默认10Mb

springboot 2.0X 设置

spring:
  servlet:
    multipart:  
      enabled: true
      max-file-size: 20MB
      max-request-size: 20MB

 

你可能感兴趣的:(java)