이런 나에게 20분 소요를 준 에러..  헐~~

ibatis에서 에러가 났다..

<update id="queryD" parameterClass="String">
update xxx set matchcnt = matchcnt +1 where memberid = #pid ;
</update>


처음에는 오타를 확인하지 못했다.

/sqlMap/update'.  Cause: java.util.NoSuchElementException  이 Exception이 발견되는 원인은 바로 # 때문이다.!!


<update id="queryD" parameterClass="String">
update xxx set matchcnt = matchcnt +1 where memberid = #pid# ;
</update>


Posted by '김용환'
,