반응형
Spring Boot Multipart 파일 업로드 최대 크기 제한 수정 (MaxUploadSizeExceededException)
Coding/Spring2025. 1. 21. 23:09Spring Boot Multipart 파일 업로드 최대 크기 제한 수정 (MaxUploadSizeExceededException)

문제 상황...org.springframework.web.multipart.MaxUploadSizeExceededException: Maximum upload size exceeded; nested exception is java.lang.IllegalStateException: org.apache.tomcat.util.http.fileupload.impl.SizeLimitExceededException:... Multipart로 사진 파일 여러개를 업로드하려고 하니, 위와 같은 오류가 발생했다. 원인Spring은 기본적으로 Multipart 의 최대 파일 크기를 1MB로 지정하고 있다.이를 초과하는 파일을 업로드 하면 오류가 발생한다. Spring의 Multipart 최대 파일 크기를 늘려주고,Requ..

반응형
image