Invalid bound statement (not found): com.bdqn.cn.dao.ZhuCheMapper.addZhuChe

仓廪实则知礼节,衣食足则知荣辱。这篇文章主要讲述Invalid bound statement (not found): com.bdqn.cn.dao.ZhuCheMapper.addZhuChe相关的知识,希望能为你提供帮助。
无效的绑定语句(未找到):com.bdqn.cn.dao.zhCheMapper.addzhChe
 
(1)dao层的方法和mapper.xml中的方法不一样;
(2)mapper.xml中的namespace resultParameter 和对应的dao层pojo层不一样
【Invalid bound statement (not found): com.bdqn.cn.dao.ZhuCheMapper.addZhuChe】 
(3)spring配置文件中关于mybatis的与xml文件路径寻找相关的配置没有写
导致调用dao层方法时,没有寻找dao.xml文件的正确路径 结果dao迷路了 从而两者无法映射
(4)spring配置文件MapperScannerConfigurer类下的basePackage属性的包路径写错
(5)如果上述都没有 就在pom文件添加一下依赖
 

< build> < resources> < resource> < directory> src/main/java< /directory> < includes> < include> **/*.properties< /include> < include> **/*.xml< /include> < /includes> < filtering> false< /filtering> < /resource> < /resources> < /build>

 

    推荐阅读