에러 해결
Mybatis A query was run and no Result Maps were found for the Mapped Statement ... 오류 해결법
연구소장 J
2023. 11. 2. 20:40
Mybatis 에러
A query was run and no Result Maps were found for the Mapped Statement '...'
It's likely that neither a Result Type nor a Result Map was specified.
에러가 발생한 원인은 resultType을 누락했기 때문이다.
예를 들어
위와 같이 select 구문에 resultType을 누락하면 오류가 발생한다.
따라서 resultType을 지정해주면 오류가 해결된다.
반응형