본문 바로가기

오류 노트

[MyBatis] Error querying database java.lang.IllegalArgumentException

반응형

오류내용 

9월 19, 2023 2:57:46 오후 org.apache.catalina.core.StandardWrapperValve invoke SEVERE: 경로 [/sampleuiadapterN]의 컨텍스트 내의 서블릿 [appServlet]을(를) 위한 Servlet.service() 호출이, 근본 원인(root cause)과 함께,

 

예외 [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 aampleMapper.selectSampleList


### Cause: java.lang.IllegalArgumentException: Mapped Statements collection does not contain value for aampleMapper.selectSampleList]을(를) 발생시켰습니다.


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

 

원인과 해결방법

dao
mapper

dao의 Mapper이름에 오타가 나서 오류가 났다. mapper namespace로 설정한 SampleMapper와 일치해야 된다. 

 

 

반응형