개발은 하는건가..

[Srpingboot] Multipart file upload size limit 설정 본문

SpringBoot , Thymeleaf

[Srpingboot] Multipart file upload size limit 설정

수동애비 2023. 1. 6. 10:18
반응형

기본적으로 파일 업로드는 1MB 로 설정되어 있어 그 이상의 파일 업로드 시  아래와 같은 오류는 발생한다.

The field file exceeds its maximum permitted size of 1048576 bytes.

 

아래와 같이 application.properties 에 최대 사이즈를 설정해준다.

spring.servlet.multipart.max-file-size=4MB
spring.servlet.multipart.max-request-size=4MB
spring.servlet.multipart.enabled=true
Comments