MyBatis 오류: Invalid bound statement (not found)

오류
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)

해결책
*mapper xml에 오타나 공백이 들어가지 않았는지 확인한다.

*namespace가 맞는지 확인한다.

*application.properties에 mybatis.mapper-locations이 정의되지 않았거나 경로가 잘못 지정되어 있지 않은지 확인한다.
mybatis.mapper-locations:classpath:mapper/**/*.xml
mapper/**/*.xml이라고 하면 mapper 폴더 하위에 있는 모든 폴더(하위의 하위까지 몇단계든 모든 폴더 포함)

Leave a Reply