java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > MyBatis循环插入insert foreach

MyBatis中的循环插入insert foreach问题

作者:攻城狮Chova

这篇文章主要介绍了MyBatis中的循环插入insert foreach问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教

MyBatis循环插入insert foreach

分析问题

在后端数据需要的循环插入数据库中时,不要在实现类ServiceImpl中使用foreach语句

这样会导致每次插入一条数据就会查询一次数据库,导致性能极低

解决方法

在MyBatis中的Mapper.xml使用insert foreach实现数据的循环插入

这样就可以查询一次数据库,将所有数据循环插入

	<insert id="saveList">
        insert into
        table (
        id ,
        column
        )values
        <foreach collection="list" item="item" index="index" separator="," >
            (
            #{item.id},
            #{item.column}
            )
        </foreach>
    </insert>

心得:

研究MyBatis框架,熟悉相关便捷开发的语法以及操作

MyBatis批量添加(foreach标签)

delete from  xxx_table where id  in 
<foreach collection="list" item="item" index="index" open="(" separator="," close=")"> 
		#{item}
</foreach>  => (1,2,3,4)

foreach标签:主要应用于批量删除与批量插入操作。

foreach标签包含的的常用属性有collection,item,index,open,separator,close

在使用foreach的时候最关键的也是最容易出错的就是collection属性,该属性是必须指定的,但是在不同情况下,该属性的值是不一样的,主要有一下3种情况

1.如果传入的是单参数且参数类型是一个List的时候,collection属性值为list

2.如果传入的是单参数且参数类型是一个array数组的时候,collection的属性值为array

3.如果传入的参数是多个的时候,我们就需要把它们封装成一个Map了,当然单参数也可以封装成map,实际上如果你在传入参数的时候,在MyBatis里面也是会把它封装成一个Map的,map的key就是参数名,所以这个时候collection属性值就是传入的List或array对象在自己封装的map里面的key。

使用示例

对于前两种情况的使用非常简单易懂,这里我们对第三种情况进行简单的使用,来进行一个批量插入。

controller层

        LocalDateTime localDateTime = LocalDateTime.now();
        teacherCourseList.setCreate_time(localDateTime);
        teacherCourseList.setUpdate_time(localDateTime);
        log.info("入参======="+teacherCourseList);
 
        Map<String,Object> map=new HashMap<>();
        map.put("username",teacherCourseList.getUsername());
        map.put("CourseList",teacherCourseList.getCourseList());
        map.put("create_time",teacherCourseList.getCreate_time());
        map.put("update_time",teacherCourseList.getUpdate_time());
        courseService.batchInsert(map);

xml

<insert id="batchInsert">
    insert into ref_teacher_course (teacher_id,course_id,create_time,update_time)
    values 
    <foreach collection="teacherCourseList.CourseList" item="item" index="index" separator=",">
        (#{teacherCourseList.username},
        #{item},
        #{teacherCourseList.create_time},
        #{teacherCourseList.update_time})
    </foreach>
</insert>

mapper

void batchInsert(@Param("teacherCourseList") Map map);

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文