🌳 에러 코드
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Wed Mar 22 12:39:48 KST 2023
There was an unexpected error (type=Internal Server Error, status=500).
nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 21
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 21
(type=Internal Server Error, status=500).
nested exception is org.apache.ibatis.exceptions.TooManyResultsException:
🌳 해결 방법
원인 : 쿼리문의 결과가 하나만 나와야하는데 두개이상의 값이 나오는 경우
해결 : 1. 결과 값이 하나만 나오도록 쿼리 수정.
2. 메소드를 List<model명>자료형으로 수정하여 두개 이상의 값을 받아오도록 수정. - dao에서 문제 발생.