首页 > 数据库 > MySQL > 正文

Mysql--Histore(Mybatis)批量查询操作

2024-07-24 13:00:22
字体:
来源:转载
供稿:网友

先从MySQL中查询到mList

//分页查询车辆数据

Page<?> total = PageHelper.startPage(page, rows);

List<VehistoryVO> mlist=vehicleInfoMapper.queryVehDataForhi(param);

再次分页查询Histore,批量查询,

Page<?> total = PageHelper.startPage(page, rows);

List<VehicleData> hList=vehicleDataMapper.queryBySeqs(mlist);

把hList查询的数据set到mList中统一返回前台

if(hList!=null){for(int i=0;i<mlist.size();i++){mlist.get(i).setData(hList.get(i));}}

------------------------------------------------service----------------------------------------------------------

------------------------------------------------VO----------------------------------------------------------

------------------------------------------------Mysql----------------------------------------------------------

------------------------------------------------Histore----------------------------------------------------------

======================批量查询参数List类型---报错参考如下===================

根据报错日志分析,是MyBatis在解析xml时找不到其中声明的studentNameList,但是在Dao中明明传的参数就是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

[html] view plain copy<if test="list != null">      AND student_name in      <foreach collection="list" item="item" open="(" separator="," close=")">          #{item}       </foreach>  </if>  

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

 

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

Dao方法修改为:

[java] view plain copypublic 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

[html] view plain copy<!--注意下面的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>  
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表