背景介绍:
一般在进行批量新增时,先遍历所有的要插入的数据,然后一条一条的插入。这样性能很低效,所以引出了批量新增的概念。
(一)JDBC批量新增
在“PreparedStatement”对象对参数赋值之后,先不要调用“PreparedStatement.excuteQuery()”,而是先调用“PreparedStatement.addBatch()”,等遍历完成后,最后调用“PreparedStatement.excuteBatch()”。
(二)Mybatis批量新增
Mybats是根据sql语句:insert into 表名 values(数据1,数据2...),(数据1,数据2...),...衍生来的
核心:在配置文件中拼接成这种形式