• org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)问题


    即在mybatis中dao接口与mapper配置文件在做映射绑定的时候出现问题。

    原因:接口与xml找不到,或者是找到了却匹配不到。有以下原因,需要逐条核查:

    1、接口名与Mybatis的映射文件名一定要不一样;

    2、XXXMapper.xml 文件 mapper 节点中 namespace 是否和 mapper 接口的所在包名一致;

    3、XXXMapper.xml文件 mapper 节点下 id 是否在接口中有对应方法;

    4、XXXMapper.xml文件 mapper 节点下所有 id,是否已全部包含了对应接口中的所有方法;

    5、接口中返回值类型是List<XXX>,而select元素没有正确配置 ResultMap 或者 resultType ; 

    6、XXXmapper.XML配置路径:

      如果在Resource下,则application.yml :mapper-locations: classpath:文件夹名/*.xml

      

     如果在java下其他位置,则application.yml:

    mapper-locations: classpath*:com/lsk/xxxxx/mapperXml/*.xml 
    注意 classpath后有“*”,并且包地址是“/”分割
    另外,还需要在pom.xml增加build节点:
    <build>
         <resources>
             <resource>
                <filtering>true</filtering>
                <directory>${basedir}/src/main/java</directory>
                <includes>
                    <include>**/*.xml</include>
                </includes>
             </resource>
             <resource>
                <directory>${basedir}/src/main/java</directory>
                <excludes>
                   <exclude>**/*.xml</exclude>
                </excludes>
              </resource>
         </resources>
    </build>
    

      

  • 相关阅读:
    SDUT 1570 C 旅行(DFS)
    SDUT 1269 走迷宫(BFS)
    求连通分量个数
    Codeforces Round #237 (Div. 2)
    FZU 2150 Fire Game(BFS)
    HDU 2045 不容易系列之(3)—— LELE的RPG难题(递推)
    LeetCode 155. Min Stack
    【ZZ】终于有人把云计算、大数据和人工智能讲明白了!
    学习笔记之Microsoft Office 365
    【ZZ】技能表合集
  • 原文地址:https://www.cnblogs.com/ericli-ericli/p/12200095.html
Copyright © 2020-2023  润新知