Mybatis -- 批量更新 -- updateBatch
Posted limeOracle
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis -- 批量更新 -- updateBatch相关的知识,希望对你有一定的参考价值。
mysql数据库配置:
数据库连接必须配置:&allowMultiQueries=true并且‘&’ 用&替换
jdbc.url=jdbc:mysql://192.168.10.10:3306/gt_environ?characterEncoding=utf8&connectTimeout=1000&allowMultiQueries=true
啦啦啦
---------------UpdateBatch
Class : Dao
/** * 批量更新environ * * @author Liang * * 2017年4月25日 */ void updateBatch(List<Environ> environs);
XML :
<update id="updateBatch" > <foreach collection="list" close="" index="index" item="item" open="" separator=";"> UPDATE environ SET pm25_h = #{item.pm25H}, pm10_h = #{item.pm10H}, temp_h = #{item.tempH}, humi_h = #{item.humiH}, co2_h = #{item.co2H}, tvoc_h = #{item.tvocH}, conn_status = #{item.connStatus}, update_time = NOW() WHERE id = #{item.id} </foreach> </update>
啦啦啦
-------
以上是关于Mybatis -- 批量更新 -- updateBatch的主要内容,如果未能解决你的问题,请参考以下文章
mybatis执行批量更新batch update 的方法(oracle,mysql)
mybatis执行批量更新batch update 的方法(oracle,mysql)