org.apache.ibatis.binding.BindingException: Mapper method 'com.portfolio.www.repository.BoardRepository.addVote' attempted to return null from a method with a primitive return type (int).
JDBC Template으로 작성한 Repository코드를 MyBatis를 도입하며 SQL xml파일에 sql문을 옮기고 실행하다가 발생한 에러
역시 실수에 의한 에러였다.
update, delete, insert문의 경우 반환값은 언제나 반영된 row수라서 반환타입은 언제나 int인데, xml 작성시 태그를 작성한 sql문에 맞는 <insert>,<delete>,<update> 태그를 쓰지 않고 엉뚱한 태그 (ex. <select>)를 써서 발생한 일.