问题描述
在使用jdbcTemplate.batchUpdate方法批量插入6000条数据时,耗时竟然达到了3分钟左右.很明显该方法没有执行批处理.
解决方案
在mysql.url
后面加上rewriteBatchedStatements=true
开启批处理
在使用jdbcTemplate.batchUpdate方法批量插入6000条数据时,耗时竟然达到了3分钟左右.很明显该方法没有执行批处理.
在mysql.url
后面加上rewriteBatchedStatements=true
开启批处理