springboot 파일 업로드 크기 설정

351 단어 자바
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

좋은 웹페이지 즐겨찾기