概要
提示:mybatisplus自带真实批量插入
在mybatisplus已知常用批量插入为继承Iservice里的saveBatch方法和saveOrUpdateBatch方法,
进入源码可知,此两种方法的插入均为单条插入,如图:
其中可看出,实则调用的sql方法为:
则此sql插入效率跟单条插入无异,只是省了一些代码操作。
优化
此时我们可以自定义mybatisplus的SqlInjector,
具体操作为:
class EasySqlInjector : MppSqlInjector() {
override fun getMethodList(mapperClass: Class<*>?): MutableList<AbstractMethod> {
val methodList = super.getMethodList(mapperClass)
methodList.add(InsertBatchSomeColumn())
return methodList
}
}
继承mybatisplus原先自带的sql方法,并加入**InsertBatchSomeColumn()方法,进入此方法源码查看,
它的实现方法相当于mybatisplus的**标签
技术细节
这里我们要利用spring的IOC把它交给Spring管理:
@Configuration
class MyatisPlusConfiguration {
@Bean
fun mybatisPlusInterceptor(): MybatisPlusInterceptor {
val interceptor = MybatisPlusInterceptor()
//向Mybatis过滤器链中添加分页拦截器
interceptor.addInnerInterceptor(PaginationInnerInterceptor(DbType.POSTGRE_SQL))
//还可以添加i他的拦截器
return interceptor
}
@Primary
@Bean
fun easySqlInjector() : EasySqlInjector{
return EasySqlInjector()
}
}
后续的mapper直接继承BaseMapper然后添加此方法即可使用:
interface FqMinMapper : MppBaseMapper<FqpfminDto> {
fun insertBatchSomeColumn(entityList: List<FqpfminDto>): Int
}
提示:这里批量插入时,如果一个出错可能会整批插入失败
这里最好给表定义一个规则,如主键重复时插入忽略异常抛出null,在insert时加IGNORE。
也需要注意各数据库对于批量插入字节的限制。文章来源:https://www.toymoban.com/news/detail-470858.html
小结
此方法提高插入速度数据量越大越明显,当然如果此需求无法满足,也可重写mybatisplus的sql注入器源码,然后自己注入去实现需要的功能文章来源地址https://www.toymoban.com/news/detail-470858.html
到了这里,关于Mybatisplus真实高效批量插入附容错机制的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!