码迷,mamicode.com
首页 > 其他好文 > 详细

Parameter 'xxx' not found. Available parameters are [collection, list]

时间:2018-06-26 16:13:21      阅读:4686      评论:0      收藏:0      [点我收藏+]

标签:ble   tty   available   实体   习惯   dao   result   养成   color   

mybatis报错问题:

dao层:
List<HqjTrade> queryHongbao(ArrayList<String> listType);

映射文件下sql:
<select id="queryHongbao" resultType="HqjTrade" >
  select * from hqj_trade where tradetype in
      <foreach collection="listType" open="(" close=")" separator="," 
          item="tradetype">
              #{tradetype}
      </foreach>
  </select>

运行报错:Parameter ‘listType‘ not found. Available parameters are [collection, list]

解决:1.通用方法,在dao层参数上加上@Param("listType"),所以养成加@Param是个好习惯

        2.将sql中Collection="listType"改为 Collection="list"或者"collection"

        3.对应方式处理二,如果参数是数组则这么改: Collection="array"

 

注意:也不是任何参数之前就加上@Param,实体类之前不需要加上注解@Param

   会报org.apache.ibatis.binding.BindingException: Parameter ‘xx‘ not found

Parameter 'xxx' not found. Available parameters are [collection, list]

标签:ble   tty   available   实体   习惯   dao   result   养成   color   

原文地址:https://www.cnblogs.com/caoxs/p/9229128.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!