博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MyBatis学习总结(10)——批量操作
阅读量:5963 次
发布时间:2019-06-19

本文共 1696 字,大约阅读时间需要 5 分钟。

hot3.png

一、mybatis中的批量操作

   批量操作核心就是一次传入多个数据然后进行相关操作,增删改查中掌握其中一个其他的也不成问题

1、最新在做的短信平台,要批量插入群发的短信记录:

当然批量操作还有:批量删除,更新,插入,更新。

  1. 批量删除:

     <delete id= "deleteBatchByXXX" parameterType= "list">

           delete from 表名 where groupon_id in

           <foreach collection="list" item= "item" index ="index"

                open= "(" close =")" separator=",">

                #{item}

           </foreach >

           </delete >

    注意,foreach是循环,用来读取传入的list参数。批量处理是parameterType的类型必须要注意。foreach标签中的collection属性表示传入的是什么集合类型。item表示的是集合中的一个量类似于

    List<String>list;

    for(String str:list){

         ……

    }

    item就相当于str的作用,用来遍历collection。index就是集合的索引。open表示标签以什么开始,close表示标签以什么结束。seprator表示元素之间的间隔。

  2. 批量插入:

     <insert id="insertBatch" >

           insert into 表名 ( uid, groupon_id, create_time, receive_time) values

        <foreach collection="list" item= "item" index ="index" separator=",">

           (#{item.uid,jdbcType=BIGINT}, #{item.grouponId,jdbcType=BIGINT},

          #{item.createTime,jdbcType=INTEGER}, #{item.receiveTime,jdbcType=INTEGER})

        </foreach >

     </insert>

    用法基本同批量删除,这里需要注意item.XXX表示获取该对象的XXX属性。

  3. 批量更新:

    <update id= "updateSubmitTimeByUids" parameterType= "map">

        update 表名

        set submit_time = #{submitTime,jdbcType=BIGINT} where uid in

        <foreach collection="list" item= "uid" index ="index"

                open= "(" close =")" separator=",">

                #{ uid}

         </foreach >

        </update >

    用法和之前的基本相同,但是需要注意传入的参数是map类型。

          

  4. 批量查询:  <select id="selectBySomePoiIds" resultType="list" parameterType="java.util.Map">      SELECT <include refid="Base_Column_List" /> FROM 表名      WHERE poi_id in        <foreach collection="poiIds" item="poiId" index="index" open="(" close=")" separator=",">            #{poiId}        </foreach>          AND pass_uid = #{passUid}          <if test="status != null">            AND status = #{status,jdbcType=BIGINT}           </if>  </select>

    注意标签的用法和上面的大同小异,都是通过传入一个集合对象来进行值得批量查询。

转载于:https://my.oschina.net/zhanghaiyang/blog/594011

你可能感兴趣的文章
MySQL状态变量 Handler_delete和Com_delete有什么关系?
查看>>
为新增硬盘制作Grub 步骤
查看>>
我的友情链接
查看>>
device eth0 does not seem to be present, delaying initialization
查看>>
Java动态代理--CGLib动态代理
查看>>
工作日志2009年、一
查看>>
隔行变色,移入变色和轮播
查看>>
通过实例来学习使用Linux KVM
查看>>
squid构建代理服务器
查看>>
共享模式和专有模式详解
查看>>
Sql Server系列:自定义函数
查看>>
我的友情链接
查看>>
java集合
查看>>
server2008R2升级域后的安全策略
查看>>
linux应急处置案例学习
查看>>
CCNP学习之路之AAA详解2
查看>>
influxdb 安装配置详解
查看>>
greenplum(5.10)生产系统主备节点切换
查看>>
aspack的简单脱壳,望大牛勿喷。
查看>>
经典sql语句
查看>>