개발노트

Error : java.lang.IllegalArgumentException: Mapped Statements collection does not contain value for 본문

Error/Database

Error : java.lang.IllegalArgumentException: Mapped Statements collection does not contain value for

dev? 2020. 4. 28. 10:53
반응형

spring mybatis 에러 

Error : java.lang.IllegalArgumentException: Mapped Statements collection does not contain value for? ~

 

 

 

[해결]

 

1. mapper의 id 확인 
mapper파일에서 <select id="A"></selcet> 
A라는 id를 가지는 쿼리문의 DAO(호출)에 있어야 되는데 있지않거나 이름이 다르면 에러 발생 

2. parameter와 bean의 필드명이 다른지 확인

3. mapper의 namespace가 다른지 확인
쿼리문을 실행시 namespace와 id를 이용해서 호출을 하는데,
namespace → mapper 찾고 id를 통해 요청한 쿼리 찾음 

4. mapper에 정의된 namespace가 중복되어 있지는 않은지 확인  

5. MyBatis config파일에 선언되어 있지 않거나 '오타'가 있는지 확인 

 

 

 

 

출처: http://seungjenote.tistory.com/43

반응형