tk.mybatis之插入(主键自增)、批量插入笔记insertList、batchInsert、insertSelective、insert
目录mapper介绍:InsertListMapper.insertList有值没值的字段都会插入!手写batchInsert方法,配置xml,插入自定义主键insertSelective(obj)主键无要求insert(obj)主键无要求mapper介绍:https://gitee.com/importer/Mapper/先说结论:少量插入请使用反复插入单条数据,方便。数量较多请使用批处理方式。