반응형
spring 파일 업로드 에러
org.springframework.validation.BeanPropertyBindingResult:
1 errors Field error in object 'boardVO' on field 'uploadFile': rejected value []; codes
에러 메시지
Message: org.springframework.validation.BeanPropertyBindingResult: 1 errors Field error in object 'boardVO' on field 'uploadFile': rejected value []; codes [typeMismatch.boardVO.uploadFile,typeMismatch.uploadFile,typeMismatch.org.springframework.web.multipart.MultipartFile,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [boardVO.uploadFile,uploadFile]; arguments []; default message [uploadFile]]; default message [Failed to convert property value of type [java.lang.String] to required type [org.springframework.web.multipart.MultipartFile] for property 'uploadFile'; nested exception is java.lang.IllegalStateException: Cannot convert value of type [java.lang.String] to required type [org.springframework.web.multipart.MultipartFile] for property 'uploadFile': no matching editors or conversion strategy found] |
원인 / 해결
insertForm.jsp에서 오타
<form action="insertBoard.do" method="post" enctype="mulipart/form-data">
아래로 수정
<form action="insertBoard.do" method="post" enctype="multipart/form-data">
참고 사이트
https://okky.kr/article/545488
'공부 > JAVA | JSP&Servlet | Spring' 카테고리의 다른 글
Spring 공부 북마크 (1) | 2019.04.01 |
---|---|
<div> 가운데 정렬 하는 법 (1) | 2019.03.31 |
@ControllerAdvice import 안되는 문제 / ControllerAdvice 에러 (1) | 2019.03.25 |
[톰캣]Multiple Contexts have a path of "/spring". 에러 해결! (7) | 2019.03.22 |
Spring 어노테이션 관련 설정 (0) | 2019.03.22 |
'공부/JAVA | JSP&Servlet | Spring'의 다른글
- 현재글spring 파일 업로드 에러 org.springframework.validation.BeanPropertyBindingResult: 1 errors Field error in object 'boardVO' on field 'uploadFile': rejected value []; codes