mybatis批量操作问题总结
1、mybatis接受list参数问题
在http://mybatis.github.io/mybatis-3/zh/dynamic-sql.html#foreach里有一段说明:
因为我传的参数只有一个,而且传入的是一个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>
修改完后,重新执行了一下测试用例,测试通过。
2、同时执行多条语句问题
<!-- 批量更新 -->
<update id="updatePL" parameterType = "java.util.List">
<foreach collection="list" item="item" index="idx" separator=";" >
UPDATE t_mortgage_applay
<set>
mortgage_contract_id = #{item.mortgageContractId},
applay_type = #{item.applayType},
start_time = #{item.startTime},
end_time = #{item.endTime},
status = #{item.status},
remarks = #{item.remarks},
update_by = #{item.updateBy.id},
update_date = #{item.updateDate},
organ_id = #{item.organId},
proc_ins_id = #{item.procInsId},
audit_type = #{item.auditType}
</set>
WHERE id = #{item.id}
</foreach>
</update>
注:jdbc.url=jdbc:mysql://127.0.0.1:3306/fpd_qh_test?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true 需要&allowMultiQueries=true才可以支持多条语句同时执行