본문 바로가기

Java & JSP

[DB-error] mybatis Mapped Statements collection does not 에러 해결

728x90
반응형

문제점

java에서 mybatis 를 쓰려고 하는데 오타도 하나도 없이 맞췄는데 에러 났다.

 error : Mapped Statements collection does not contain value for


해결 방법

아주 간단..

config 설정 파일에


<mappers>

<mapper resource="com/test/Builder/sqlmap/ContentMap.xml" />

<mapper resource="com/test/Builder/sqlmap/UserMap.xml" />

</mappers>


이런식으로 xml 쿼리 파일을 매핑 해줘야 한다.

바보같이 다른 파일 작성은 다해놓고 정작 매핑을 안시켰다..ㅎ..

728x90
반응형