Notice
Recent Posts
Recent Comments
Link
09-14 08:53
«   2025/09   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
Archives
Today
Total
관리 메뉴

study-project

[오류]invalid bound statement (not found) 본문

TIL/Spring

[오류]invalid bound statement (not found)

귤식빵 2021. 3. 25. 00:42

ibatis.binding.bindingexception invalid bound statement (not found): com.pro.service.BoardService.listPaging

이런 오류가 생겨서  한참을 찾았다.

 

원인은

  1. Mapper Interface와 mapping되는 xml파일에 오타가 있는 경우 : 예를 들면 id와 Interface에 메소드명이 일치하지 않는 경우
  2. classpath에 경로가 잘못된 경우
  3. xml이 저장될 경로는 잘못 생성한 경우

이렇게 3가지가 가장 많다고 하는데 

나는 root-context.xml  파일에서 서비스 부분을 빠트려서 못찾는 것이였다. 

더 꼼꼼하게 생각해야지..

Comments