개인적인 정리

Caused by: org.apache.ibatis.type.TypeException: Error setting non null for parameter #1 with JdbcType null . 본문

전자정부표준프레임워크/Exception 및 Error

Caused by: org.apache.ibatis.type.TypeException: Error setting non null for parameter #1 with JdbcType null .

yeon.Biju 2022. 7. 7. 16:15
Caused by: org.apache.ibatis.type.TypeException: Error setting non null for parameter #1 with JdbcType null . Try setting a different JdbcType for this parameter or a different configuration property. Cause: java.sql.SQLException: Parameter index out of range (1 > number of parameters, which is 0).

내 경우

MyBatis 에서 작은 따옴표를 잘못써서 발생한 오류인데, 에러를 찾기 헷갈리고 오래 걸렸던 이유가 작은 따옴표의 위치가 변수가 바인딩 되기 한참전에 잘못되었었다. 

1
2
3
4
5
6
7
8
9
10
11
select 
    field1,
    field2,
    field3,
    (select nm from COMTCCMMNDETAILCODE where CODE_ID = COM01000') as  field4
from table
where 
<if test='searchCnd == "0"'>AND
    field1 LIKE CONCAT('%' , #{searchWrd}, '%')
</if>
 
cs

 

 위와 같은 쿼리에서...CODE_ID = COM01000'  부분 작은 따옴표를 잘못써서 발생하였다.

Comments