일모도원(日暮途遠) 개발자
[스프링 오류수정] Mapped Statements collection does not contain value 본문
아래와 같은 오류를 만났다.
Mapped Statements collection does not contain value for voMapper.getIctTermByID
"Mapped Statements collection does not contain value for" 오류는 매퍼.xml에 해당되는 ID가 없기 때문에 발생하는 오류이다.
나의 경우는 ID가 대소문자가 서로 달라서 난 오류이다.
Java파일
vo = sqlSession.selectOne("voMapper.getIctTermByID", map);
Mapper파일
<select id="getIctTermById" ~~~
</select>
대소문자 구분 잘하자. 한번 안보이기 시작하면 계속 안보인다.
'스프링 > 오류 수정' 카테고리의 다른 글
[스프링 오류수정] getter, setter가 갑자기 안될때. (0) | 2022.12.16 |
---|---|
[톰캣] .jar which is referenced by the classpath, does not exist. (0) | 2022.06.10 |