Type handler was null on parameter mapping for property '__frch_item_0.value'.
이클립스에서 mybatis 이용중 다음과 에러가 발생하였다.
### Error querying database. Cause: java.lang.IllegalStateException: Type handler was null on parameter mapping for property '__frch_item_0.value'. It was either not specified and/or could not be found for the javaType / jdbcType combination specified.
### Cause: java.lang.IllegalStateException: Type handler was null on parameter mapping for property '__frch_item_0.value'. It was either not specified and/or could not be found for the javaType / jdbcType combination specified.
<if test='deptCode !=null and deptCode !=""'>
deptCode in
<foreach collection="deptCodes" item="item" open="(" separator="," close=")">
#{item.value}
</foreach>
</if>
에서 위와 같은 오류 발생
#{item.value} --> #{item,jdbcType=VARCHAR} 로 변경하니 오류가 발생하지 않았음.