이런 나에게 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>
'web' 카테고리의 다른 글
[jquery] html 컴포넌트 접근 및 json 객체 생성하기 (0) | 2017.05.31 |
---|---|
[javascript] jquery로 file upload 하는 예제 (0) | 2017.05.29 |
Jetty는 AJP보다 Mod_proxy를 선호함 (0) | 2010.02.04 |
한 서버에 톰캣이 여러개여서 좋은 점 (0) | 2010.01.23 |
Maven plugin combines and minimizes JavaScript (0) | 2010.01.11 |