반응형
java.lang.UnsupportedOperationException 에러.
resultType 이 맞지않아 발생
매퍼에서 select 해서 온값이 count이기때문에 resultType를 int로 주어야하는데 실수로 다른값을 주어서 에러발생!!!!
<select id="pwdCheck" resultType="int">
select count(*) from GUESTBOOK where idx=#{idx} and passwd=#{passwd}
</select>
반응형