본문 바로가기

카테고리 없음

[Mybatis] 에러 - A query was run and no Result Maps were found for the Mapped Statement

org.apache.ibatis.executor.ExecutorException: A query was run and no Result Maps were found for the Mapped Statement 'dto.boardDto.like_isLiked'. It's likely that neither a Result Type nor a Result Map was specified.

에러 발생 원인

mapper에서 insert문의 resultType을 지정 해 주지 않아 발생한 에러이다.

 

다음과 같이 resultType을 넣어주기만 하면 해결되는 문제다 !