欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Mapped Statements collection does not contain value for xxx

程序员文章站 2022-07-15 12:22:43
...

说个同事出现的问题:Mapped Statements collection does not contain value for xxx

当时第一反应,就是sql文件中没有定义id为“xxx”,查看sql文件,确实定义了。(因为项目设计问题,namespace问题可以忽略)

后面就奇怪了,这个名为“xxx”的ID是一个公共方法,经过测试,其他接口的方法都可以正常调用,唯独同事写的方法不行,一道这里调用sql就抛这个错误。然后查询,说法基本一致:namespace/映射文件与接口不一致等。直接排除网上说的这种情况。

然后耐心比对同事和别人调用公共sql的地方,突然发现,这位仁兄没有调用dao层公共方法,而是自己写了一个。。。而且,接收的对象,也是sql中resultMap的对象也完全不一致。。。。好吧,问题找到了。

此文目的:使用mybatis,当抛出“Mapped Statements collection does not contain value for xxx”的时候,不仅要看网上分析出的其他原因,还要看返回对象能否与接收对象对应起来。

附录:抛错时,相关主要代码

sql
<select id="querylastInfo"  resultMap="reMap" parameterType="java.lang.String">
    select * from (
        select t.*
        from  table_a t
        where t.flag= '${_parameter}'
        order by t.ROW_ID desc) 
    where rownum=1
</select>
<resultMap id="reMap" type="resultBean">
    <result property="rowId" column="ROW_ID" />
    <result property="infoType" column="INFO_TYPE"/>
</resultMap>

mybatis.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
    <typeAliases>
        <typeAlias alias="reMap" type="com.bean.ResultBean" />
    </typeAliases>
    <mappers>
        <mapper resource="sqlmap/info.xml" />
    </mappers>
</configuration>

公用dao

ResultBean bean = this.sqlSession.selectOne("querylastInfo", "1");

同事写的:

同事 dao

ResultBeanA aBean = this.sqlSession.selectOne("querylastInfo", "1"); 

换个对象接收,编译不报错,允许也不会明显报出对象不对的错误。以后注意有公用的方法就别自己单独写。查问题要仔细,一个个单词的去对比。