Programming Language/Javascript, ...

[MyBatis] Mapped Statements collection does not contain value for 에러

Ma_Sand 2022. 7. 25. 18:49
반응형
java.lang.IllegalArgumentException: Mapped Statementscollection does not contain value for

 

해당 에러는 이럴 때 발생한다.

 

1. mapper id가 다를 경우

  : mapper 파일에서 <select id=" "></select> 구문의 id 값과 Dao/Service에서 접근하는 id값이 다를 때 발생할 수 있다.

 

2. Parameter와 bean의 필드명이 틀릴 경우

 

3. mapper 파일에 정의된 namespace와 Dao/Service에서 호출하는 namespace가 다를 경우

 

4. mybatis-config 파일에 mapper가 정의되어 있지 않거나 스펠링이 틀릴 경우

 

5. mapper에 정의된 namespace 명칭이 같은 application 내에 중복될 경우

 

 

 

 

출처: 자바킹, https://blog.naver.com/javaking75/220315971085

반응형