spring boot 2.x MultiPartFile 파일 업로드 용량 제한 설정

ssongkim·2021년 7월 9일
0
post-custom-banner

파일 용량 제한 설정하기

application.properties 혹은 application.yml에 해당 내용을 삽입한다.

application.yml
server:
  servlet:
    multipart:
      maxFileSize: 10MB
      maxRequestSize: 100MB

server.servlet.multipart.maxFileSize 개별 파일 당 용량 최대치를 설정한다.

server.servlet.multipart.maxRequestSize 한 요청에서의 모든 파일 용량 최대치를 설정한다.

용량 제한 Exception 핸들링

FileSizeLimitExceededException: maxFileSize 초과 시 발생
SizeLimitExceededException: maxRequestSize 초과 시 발생

각 에러를 핸들링해서 적절한 응답을 보내자!

profile
鈍筆勝聰✍️

0개의 댓글