본문 바로가기
Java/study

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

by avvin 2019. 6. 13.

에러 : java.lang.IllegalArgumentException: Mapped Statements collection does not contain value for​ ~



nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: 
### Error querying database.  Cause: java.lang.IllegalArgumentException: Mapped Statements collection does not contain value for member.login_check


[에러가 발생할수 있는 상황]


1. mapper id가 다를경우
   - mapper파일(MyBatis의 쿼리문을 등록한 XML파일)에 <select id=''.. 에 id와 
     mapper파일에 직접 접근하는 java파일(DAO나 service)에 적어놓은 id값이 다른 경우 
2. Parameter와 bean의 필드명이 틀린 경우
3. mapper파일(MyBatis의 쿼리문을 등록한 XML파일) 정의된 네임스페이스(namespace)와 
   mapper파일에 직접 접근하는 java파일(DAO나 service)에서 호출하는 네임스페이스(namespace)가 다를 경우
4. MyBatis config파일에 mapper가 정의가 되어 있지 않거나 Spelling이 틀린 경우
5. mapper에 정의된 namespace 명칭이 같은 Application 내에 중복 될 경우



'Java > study' 카테고리의 다른 글

spring 18강 이메일 보내기  (0) 2019.07.03
NIO기반 네트워킹  (0) 2019.04.25
NIO기반 입출력  (0) 2019.04.24
스레드풀(ThreadPool)  (0) 2019.04.24
IO기반 네트워킹  (0) 2019.04.22