`

xxxList not found

阅读更多
问题:MyBatis接口中以list作为参数类型,在mapper.xml中以改list的名称进行判定,报错



总结:
1.
类型ListArrayMap
XML中接收值listarray封装的key
参数类型java.util.Listjava.util.Arrayjava.util.Map

2.使用map传递参数,mapper.xml中接收的值为map中的key值
3.在mapper.xml通过po类进行参数接收
  <select id="viewMerchantBrand" resultMap="BaseResultMap" parameterType="user.po.MerchantBrand" >
    select
    <include refid="Base_Column_List" />
    from usr_merchant_brand
    where 1 = 1 
    <if test="merchantId != null" >
     and merchant_id =  #{merchantId,jdbcType=VARCHAR} 
    </if>
    <if test="brandId != null" ><!--Po类中的属性字段名称 -->
     and brand_id =  #{brandId,jdbcType=INTEGER} 
    </if>
  </select>

4.关于po与map做为参数的比较
名称pomap
集合如list将该集合作为po的属性集合作为key值
类属性类中全部属性类中部分属性


博文转载:http://chenzhou123520.iteye.com/blog/1921284
有些许改动,改动的地方是MyBatis的调用方式不同
错误提示:

Error querying database.Cause: org.apache.ibatis.binding.BindingException: Parameter 'studentNameList' not found. Available parameters are [list] 
Cause: org.apache.ibatis.binding.BindingException: Parameter 'studentNameList' not found. Available parameters are [list] 


单元测试类
    @Test  
    public void testgetStudentCount(){  
        List<String> studentNameList = new ArrayList<String>();  
        studentNameList.add("zhangsan");  
        studentNameList.add("lisi");  
        int count = studentDao.getStudentCount(studentNameList);  
        System.out.println(count);  
    }  


mapper.java
pulibc int getStudentCount(List<String> studentNameList);


mapper.xml
<select id="getStudentCount" parameterType="java.util.List" resultType="java.lang.Integer">  
<![CDATA[ SELECT COUNT(*) FROM t_student WHERE 1=1 ]]>  
<if test="studentNameList != null"> 
AND student_name in  
<foreach collection="studentNameList" item="item" open="(" separator="," close=")">  
#{item}   
</foreach>  
</if>  
</select>  


报错原因:

根据报错日志分析,是MyBatis在解析xml时找不到其中声明的studentNameList,
但是在接口中传的参数就是studentNameList,怎么会报错呢?

查询了一下MyBatis官方的说明文档,终于找到了原因,在http://mybatis.github.io/mybatis-3/zh/dynamic-sql.html#foreach里有一段说明:
写道
注意 你可以传递一个 List 实例或者数组作为参数对象传给 MyBatis。当你这么做的时 候,MyBatis 会自动将它包装在一个 Map 中,用名称在作为键。List 实例将会以“list” 作为键,而数组实例将会以“array”作为键。

因为我传的参数只有一个,而且传入的是一个List集合,所以mybatis会自动封装成Map<"list",studentNameList>。在解析的时候会通过“list”作为Map的key值去寻找。但是我在xml中却声明成studentNameList了,所以自然会报错找不到。

解决方式:


第一种就是修改mapper.xml中foreach标签内容,把studentNameList修改为list
    <if test="list != null">  
        AND student_name in  
        <foreach collection="list" item="item" open="(" separator="," close=")">  
            #{item}   
        </foreach>  
    </if>  

不过这种方式我个人不太建议,因为以后如果要扩展该方法,增加集合参数的时候,还得修改xml中的内容。

第二种方式,修改dao中的参数传入方式,手动封装成map,然后把map当参数传进去

Dao方法修改为:

    public int getStudentCount(List<String> studentNameList){  
        //把参数手动封装在Map中  
        Map<String, Object> map = new HashMap<String, Object>();  
        map.put("studentNameList", studentNameList);  
        return super.count("getStudentCount", map);  
    }  

然后修改mapper.xml中的parameterType类型为Map
    <!--注意下面的parameterType类型必须修改为Map类型,foreach中引用的List名称不用改变-->  
    <select id="Student.getStudentCount" parameterType="java.util.Map" resultType="java.lang.Integer">  
        <![CDATA[ 
        SELECT 
            COUNT(*) 
        FROM 
            t_student WHERE 1=1  
        ]]>  
        <if test="studentNameList != null">  
            AND student_name in  
            <foreach collection="studentNameList" item="item" open="(" separator="," close=")">  
                #{item}   
            </foreach>  
        </if>  
    </select>  

修改完后,重新执行了一下测试用例,测试通过。
分享到:
评论

相关推荐

    Ewebeditor License not found. Disabled.doc

    Ewebeditor 是一个功能强大的在线编辑器,但是有时用户可能会遇到 License not found. Disabled 的问题,今天我们将深入探讨这个问题的成因和解决方法。 首先,让我们了解 Ewebeditor 的 License 机制。Ewebeditor ...

    解决开机报mouse not found,keyboard not found

    标题 "解决开机报mouse not found,keyboard not found" 指出的问题是在计算机启动时,系统无法找到鼠标和键盘,导致出现错误提示。这通常与BIOS(基本输入输出系统)设置有关,因为BIOS是电脑启动时首先加载的软件,...

    编译时报 Looking for pthread_create - not found 的解决办法

    编译时报 Looking for pthread_create - not found 的解决办法 linux gcc 编译时报Looking for pthread_create - not found 其解决办法是...

    LTpowerPlanner not found的问题处理方法

    当你遇到"LTpowerPlanner not found"的问题时,这通常意味着系统无法找到或正确识别该程序,可能是由于安装不完整、文件丢失或版本不兼容等原因导致的。以下是一些详细的解决步骤和相关知识点: 1. **检查安装路径*...

    60多种 404 not found页面,带图片预览,下载直接用

    本资源包含60多种不同的404 Not Found页面设计,每一种都带有图片预览,让用户在下载前就能看到具体样式。这些设计采用HTML和CSS技术制作,HTML负责构建网页结构,而CSS则用于美化和布局,使页面呈现出丰富多彩的...

    launch failed binary not found(图文)手把手教你解决

    ### 解决“launch failed binary not found”的方法 在软件开发过程中,尤其是对于初学者而言,经常会遇到各种编译和运行时的问题。其中一个常见的错误就是“launch failed binary not found”。这篇文章将详细地...

    IIS HTTP 错误 404.17 – Not Found 解决方法

    错误提示如下图: 出现这种情况的原因通常是因为先安装了Framework,后安装的IIS...注册成功后,重启一下iis, 理论上应可以解决导致404.17 not found 的大部分问题了; Win7中IIS出现“HTTP 错误 404.17 – Not Foun

    windows下eclipse的“Lauch failed. Binary not found”问题解决方案.

    Binary not found”问题解决方案" 在 Windows 下使用 Eclipse 开发 C++ 项目时,可能会遇到 “Lauch failed. Binary not found” 的错误,这个问题的解决方案可以分为以下几个方面: 1. 项目设置:在 Eclipse 中...

    解决 version `GLIBC_2.14' not found 解决方法.

    解决 version `GLIBC_2.14' not found 解决方法.具体方法可以参考一下。。

    linux中找不到编译内核提示mkimage command not found – U-Boot images will not be built的解决方法

    ### Linux中找不到编译内核提示mkimage command not found – U-Boot images will not be built的解决方法 在Linux环境中进行嵌入式系统的开发时,经常会遇到各种编译错误或缺失依赖的问题。其中,“mkimage ...

    linux下提示bash-command not found.docx

    Linux 中解决 "bash: command not found" 问题的方法 在 Linux 系统中,经常会遇到 "bash: command not found" 的错误提示,这是因为系统无法找到相应的命令所致。解决这个问题的关键就在于理解 Linux 系统中的 ...

    sqlite3:not found 解决方法

    标题中的“sqlite3:not found”是一个常见的错误提示,通常在Linux或类Unix系统中出现,意味着系统找不到sqlite3命令行工具。SQLite是一款轻量级的数据库管理系统,它被广泛应用于嵌入式设备、移动应用以及服务器端...

    【keil-assistant 插件】Not found any active target

    【keil-assistant 插件】“Not found any active target”错误详解 Keil是知名的嵌入式系统开发工具,广泛应用于微控制器编程。Keil-Assistant是一款为Keil μVision IDE设计的增强型插件,旨在提升开发效率,提供...

    ADC083X.DLL(报错:External model DLL &quot;ADC083X.DLL&quot; not found.)

    ADC083X.DLL(报错:External model DLL "ADC083X.DLL" not found. GLE=0x000036B1.) 注意!注意! 注意:替换后再次仿真时仍然有可能失败,这和电脑系统有关(毕竟用的是Po_Jie版本的),可以尝试换台电脑试一试! ...

    bashfdiskcommand not found 解决办法

    ### bash: fdisk: command not found 解决办法 在 Linux 系统中,用户经常会遇到命令执行失败的情况,其中一种常见的错误提示就是“command not found”。这类问题通常出现在尝试运行一个系统未找到路径的命令时。...

    Windows平台的 PHP 报错 Fatal error: Class COM not found in 的解决方法

    Fatal error: Class ‘COM’ not found in XXXXXXXXX 没发现 COM 类,php代码主要是调用一些系统的信息,初想应该是php没配置好,在stackoverflow找到答案,是讨论xampp的,要延伸开来,我加了几个要点: ★ php 根...

    file'psfig.sty' not found

    在LaTeX排版系统中,"file 'psfig.sty' not found" 是一个常见的错误信息,这通常意味着系统在编译文档时无法找到`psfig.sty`这个宏包文件。`psfig`宏包是LaTeX早期用于插入PostScript图形的工具,它允许用户在文档...

    telnet不能用 提示:-bash: telnet: command not found

    在Linux系统中,"telnet不能用,提示:-bash: telnet: command not found"这一问题通常是由于系统中没有预装telnet客户端或者其路径未被添加到环境变量PATH中导致的。telnet是一个远程登录协议,允许用户通过网络在...

    sqlite3 not found的解决办法

    在使用Linux或Unix类操作系统时,可能会遇到"sqlite3 not found"这样的错误提示,这通常意味着系统中没有安装SQLite3这个数据库引擎或者其路径没有被正确地添加到系统的PATH环境变量中。SQLite3是一个轻量级、开源的...

    sqlite3(解决adb sqlite3: not found 问题)

    手机调试app时,使用adb调试数据库sqlite,输入命令sqlite3,提示:sqlite3 not found。将此文件导入/system/XBIN目录下,并赋予执行权限。

Global site tag (gtag.js) - Google Analytics