org.apache.ibatis.binding.BindingException
2023. 1. 18. 10:49ㆍDev.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
'Dev.Program > USELESS:<' 카테고리의 다른 글
[MyBatis] 마이바티스는 .을 구분자로 인식한다...! (0) | 2024.09.06 |
---|---|
[SQLServer] java.security 파일 수정 (0) | 2023.03.10 |
[개발서버] localhost url 하드코딩 (0) | 2023.02.21 |
[MyBatis] MS-Sql Merge Into문 사용 / Mssql Dual 테이블 (0) | 2023.01.31 |
[MyBatis] #{}와 ${} 차이? (1) | 2023.01.26 |