써먹는 웹개발
[Mybatis 에러] java.lang.NumberFormatException: For input string 본문
Server/Mybatis (.xml)
[Mybatis 에러] java.lang.NumberFormatException: For input string
kmhan 2018. 5. 22. 09:39728x90
반응형
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: java.lang.NumberFormatException: For input string: "N" ### Cause: java.lang.NumberFormatException: For input string: "N" |
다음 에러 발생시 원인
<if test="testParam == 'A'">
단일 문자를 홑따옴표로 묶었을때 숫자로 처리되어 에러남
해결방법
<if test="testParam == 'A'.toString()"> |
[출처] [Mybatis 에러] java.lang.NumberFormatException: For input string|작성자 하루우유
※ <if test="testParam == "A""> 이것도 안됨
728x90
반응형
'Server > Mybatis (.xml)' 카테고리의 다른 글
[Mybatis] View 연동해서 Mybatis in절 사용하는 방법 (ex. '1,2,3') (0) | 2021.06.22 |
---|---|
[Mybatis] CDATA를 쓰는 경우 (0) | 2020.06.25 |
[Mybatis] Array 변수(파라미터)의 null 체크하는 2가지 방법 (1) | 2020.03.20 |
[Mybatis] Invalid bound statement (not found) 원인 중 하나 (0) | 2020.03.05 |
[Mybatis] Like 검색시 DB별 처리방법 (0) | 2020.02.21 |
Comments