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

Posted 拯代码

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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层不一样

 

(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>

 

以上是关于Invalid bound statement (not found): com.bdqn.cn.dao.ZhuCheMapper.addZhuChe的主要内容,如果未能解决你的问题,请参考以下文章

Invalid bound statement not found

Invalid bound statement (not found) 错误原因

报错 Invalid bound statement (not found): com.xxx.mapper.xxx

Invalid bound statement (not found)

Mybatis 异常记录: Invalid bound statement (not found)

mybatis错误:Invalid bound statement (not found)