mybatis之批量添加
Posted 古越剑箫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis之批量添加相关的知识,希望对你有一定的参考价值。
mybatis批量添加xml
<insert id="batchCreate"> INSERT INTO `roomer` (`order`,name,idCard,mobile,timePreCheckin,timePreCheckout,hotel) values <foreach collection="collection" item="item" index="index" separator=","> ( #{item.order,jdbcType=VARCHAR},#{item.name}, #{item.idCard},#{item.mobile},#{item.timePreCheckin}, #{item.timePreCheckout},#{item.hotel,jdbcType=INTEGER}) </foreach> </insert>
以上是关于mybatis之批量添加的主要内容,如果未能解决你的问题,请参考以下文章