🌳 에러 코드
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Fri Mar 31 11:35:23 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: 14
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 14
🌳 해결 방법
🌾 원인 :List로 담아서 output을 해야하는데 한 행으로 output을 했기에 TooManyResultsException 발생.
🌾 해결 방법 : BO, Mapper, controller 모두, output을 list로 만든다.
<전>
<후>
'코딩 에러 및 질문' 카테고리의 다른 글
에러 - ClassNotFoundException (0) | 2023.04.07 |
---|---|
에러 - Failed to convert from type [java.lang.String] to type [java.util.Date] for value '2023-04-19'; nested exception is java.lang.IllegalArgumentException] (0) | 2023.04.01 |
에러 - model.addAttribute() 값이 넘어오지 않고 null. (0) | 2023.03.28 |
에러 - Failed to parse the expression [${}] (0) | 2023.03.27 |
코딩 질문 - 마크다운 문법 (0) | 2023.03.24 |