-
java.lang.NumberFormatException: For input string:웹프로그래밍/오류 노트 2018. 8. 10. 11:09
개발환경: 스프링4 / myBatis
오류내용:
DB에서 가져온 데이터를 ModelAndView 객체에 담아서 jsp로 보냈는데
forEach 문으로 출력되는 과정에서 java.lang.NumberFormatException 익셉션 발생
해결:
forEach문을 잘못 사용했다.
sellBestItem로 접근하지 않고 var 값으로 접근하니 해결됨
<c:forEach items="${sellBestItem}" var="sellBest" begin="0" varStatus="status" end="${fn:length(sellBestItem)}">
${sellBestItem.GOODS_NUMBER}- > ${sellBest.GOODS_NUMBER}</c:forEach>
'웹프로그래밍 > 오류 노트' 카테고리의 다른 글
스프링부트-jpa] object references an unsaved transient instance (0) 2019.06.28 한글깨짐/인코딩 설정 - 한글이 물음표(?)로 나온다. (1) 2018.06.16 스트럿츠2 에러 - org.xml.sax.SAXParseException: The content of element type (0) 2018.05.29 스트럿츠2 - 원인을 알 수 없는 에러, 부적합한 열 이름 (0) 2018.05.27 스트럿츠2 에러) No result defined for action (0) 2018.05.23