데이터처리 에러 Cause: java.lang.IllegalArgumentException: Mapped Statements collection does not contain value for Home.selectAllUserList 원인 1) mapper id가 다를경우 - mapper id값과 DAO에 적어놓은 id값이 다른 경우 2) Parameter와 bean의 필드명이 틀린 경우 3) mapper파일에 정의된 네임스페이스(namespace)와 DAO에서 호출하는 네임스페이스(namespace)가 다를 경우 4) MyBatis config파일에 mapper가 정의가 되어 있지 않거나 Spelling이 틀린 경우 5) mapper에 정의된 namespace 명칭이 같은 Application 내에 중..