废话不多说直接上代码;mapper文件中:
<insert id="saveList" parameterType="hashmap" >
INSERT INTO tb_vehicle_tag
(id,VIN,TAG_CODE,TAG_TYPE,STATUS,DESCRIPTION,CREATE_BY,CREATE_DATE,LAST_UPDATE_BY,LAST_UPDATE_DATE,ROW_VERSION,IS_VALID)
values
<foreach collection="list" item="tbVehicleTag" index="index" separator=",">
(#{tbVehicleTag.id},#{tbVehicleTag.vin},#{tbVehicleTag.tagCode},#{tbVehicleTag.tagType},1,NULL,NULL,now(),NULL,now(),1,1)
</foreach>
</insert >
要注意的是:第一:报这样的错
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException:
### Error querying database. Cause: java.lang.IllegalStateException: Type handler was null on parameter mapping for property '__frch_item_0'. It was either not specified and/or could not be found for the javaType / jdbcType combination specified.
这个时候仔细检查参数是否对齐,一定是sql格式语句有错误,所以仔细查看,
第二:mysql的版本不同对表设计的not null 的检查也不同所以比如像时间这种默认不为null的一定要now()创建时间;
其次我们在list 中做插入数量上也可做控制;一下是我检查的时间
list中的数量:一次性十万条用时:13秒左右
list中的数量:2000条一次,循环50次完成插入十万条数据用时:6秒左右
所以建议对数据量过大的情况下可采用分批插入效率会更好;