2021
05-02
05-02
详解mybatis批量插入10万条数据的优化过程
数据库在使用mybatis插入大量数据的时候,为了提高效率,放弃循环插入,改为批量插入,mapper如下:packagecom.lcy.service.mapper;importcom.lcy.service.pojo.TestVO;importorg.apache.ibatis.annotations.Insert;importjava.util.List;publicinterfaceTestMapper{@Insert("")IntegertestBatchInsert(Listlist);}实体类:packagecom.lcy.service.pojo;importlombok.AllArgsConstructor;importlombok.Data;import...
继续阅读 >