org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.test.demo.dao.T

org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.test.demo.dao.T_第1张图片

解决方法

1.

看xml文件中的namespace是否和mapper文件名相同(包名和文件名)在这里插入图片描述

2.

若是mapper接口和xml文件存放的位置不在一个包下则需要配置
配置xml文件:
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.test.demo.dao.T_第2张图片
在启动类添加注解扫描mapper接口:
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.test.demo.dao.T_第3张图片

3.检查resources插件是否加入了xml后缀的文件

org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.test.demo.dao.T_第4张图片
修改pom.xml文件后及得clean一下和update项目

你可能感兴趣的:(我的错误,maven)