개발/문제해결
Result Maps collection does not contain value for [resultMap & resultMap error]
Mo_bi!e
2023. 3. 23. 15:55
0323에 수업중 오류가 발생했다
resultMap 이라고 했는데 mapping한것을 넣어준것이 아니라 그냥 entity를 담아주어서 문제가 발생하였다.
<전>
<select id="findById" resultMap="Menu">
select *
from menu
where
id = #{id}
</select>
그래서 상단에 설정한 mapping을 resultMap에다가 넣어주니 문제가 해결되었다.
<후>
<select id="findById" resultMap="menuResultMap">
select *
from menu
where
id = #{id}
</select>