에러 메시지
Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.multipart.MaxUploadSizeExceededException: Maximum upload size exceeded; nested exception is java.lang.IllegalStateException: org.apache.tomcat.util.http.fileupload.impl.FileSizeLimitExceededException: The field file exceeds its maximum permitted size of 1048576 bytes.] with root cause
해결
.properties 파일에 아래 코드 추가
spring.servlet.multipart.max-file-size=20MB
spring.servlet.multipart.max-request-size=20MB
'웹 개발 > Spring Boot' 카테고리의 다른 글
Spring Boot) BCryptPasswordEncoder 사용해서 사용자 비밀번호 암호화하기 (0) | 2021.10.08 |
---|---|
Spring Boot) resources 폴더 내 파일 다운로드 (0) | 2021.09.11 |
Spring Boot) resource에 저장된 파일 다운로드 (JAR 파일에서도 접근 가능) (0) | 2021.07.21 |
Spring Boot) properties 파일로 변수 주입받아 사용하기 (profile 활용) (0) | 2021.07.16 |
SpringBoot) 파일 이름을 파라미터로 파일 다운 받는 GET url 만들기 (0) | 2021.06.18 |