🌳 에러 코드
2023-03-24 11:44:03,654 ERROR [org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/].[dispatcherServlet]] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.example.lesson04.dao.UserMapper.insertUserAsField] with root cause
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.example.lesson04.dao.UserMapper.insertUserAsField
🌳 해결 방법
🌾 원인 : XML(Mapper) directory 경로 문제 src/main/resources -> mappers -> User.xml // Mapper명을 뒤에 안 붙임.
🌾 해결 방법 : Mapper 명을 뒤에 붙이기.
<전>
<후>