Make Be BackEnd
[mybatis] org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 98 본문
Error
[mybatis] org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 98
Initsave 2024. 8. 22. 10:22현상
Map 타입 List로 받아올때 에러
원인
db에서 데이터를 여러개 가져오지만 반환 타입이 List가 아닐때
해결
해당 반환 타입을 List로 받아들이자!
반환타입 : Map<String,Object> -> List<Map<String,Object>> 혹은 Model -> List<Model>