其中id为对应的函数名,useGeneratedKeys是否主键自动生成,keyProperty主键关联的属性。
<foreach collection="list" item="element" index="index" separator=",">
确定集合类型,item每个元素表示形式,index索引,separator分隔符。
<insert id="insertList" useGeneratedKeys="true" keyProperty="id">
insert into storage_source_config(
name,
type,
title,
storage_id,
value
)values
<foreach collection="list" item="element" index="index" separator=",">
#{element.name, jdbcType=VARCHAR},
#{element.type, jdbcType=LONGVARCHAR},
#{element.title, jdbcType=VARCHAR},
#{element.storageId, jdbcType=INTEGER},
#{element.value, jdbcType=LONGVARCHAR}
</foreach>
</insert>