org.apache.ibatis.binding.BindingException

2023. 1. 18. 10:49Dev.Program/USELESS:<

728x90

삽질에 삽질^~^

Servlet.service() for servlet [dispatcherServlet] in context with path [/_xxx] threw exception [Request processing failed; nested exception is org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): mapper.ZoomMapper.doZoomApplyInsert] with root cause
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): mapper.ZoomMapper.doZoomApplyInsert

>> 주입 다 잘 하고 틀린 게 없는데 자꾸 못찾는다는 오류가 떠서 엥? 했는데

알고보니까 내가 전체 파일명을 한 번 싹 바꾼 적이 있었다....ㅎ 까먹고 있었음

//변경 전
<mapper namespace="mapper.ZoomReservationMapper">

//변경 후
<mapper namespace="mapper.ZoomMapper">

ZoomMapper.xml 파일에서 namespace를 바꿔줘야 하는데 안바꿔줘서 못찾는 거 였음...^__^

아무튼 해결!

728x90