
mybatis
南风孤梦晓辰星
南风过境,十里柔情;不如你,可是,南风未起,思念成疾。
展开
-
mybatis:Parameter ‘list‘ not found. Available parameters are [x,x,x]
一、错误描述使用MyBatis进行查询操作,在DAO层中参数类型传的是一个List<Sting>(@Param("thirddptList") List<String> thirddptList),但是在执行查询的时候,控制台会报Parameter 'list' not found. Available parameters are [thirddptList, userId, param1, param2]错误。1.错误日志Caused by: org.apache.原创 2020-08-24 21:28:52 · 8040 阅读 · 0 评论 -
mybatis if条件判断
一、字符串(string)非空判断<if test="name!=null and name!=''"> AND name = #{name} </if> 二、集合(list)非空判断<if test="list!=null and list.size()!=0"> AND THIRD_DPT IN <foreach collection="list" item="item" open="(" separator=...原创 2020-08-24 20:35:12 · 6261 阅读 · 0 评论