MyBatisPlus批量导入与高效SQL批量导入

在使用MyBatisPlus的批量导入功能,发现数据量较大时比较慢,进入源码大体看了下,MyBatisPlus是一1000条数据为一批次,一批次执行这一批次数据的SQL语句,而且每个语句都是执行一条数据的存储,在SQL语句中存储语句是最慢的,在加上大量数据一条一条执行,效率更低了,于是使用手写SQL,使用sql语句中的foreach循环,效率提升了不少

MyBatisPlus实现批量存储过程

MyBatisPlus批量导入与高效SQL批量导入_第1张图片

高效SQL批量导入





    
        INSERT INTO table_name (
        id,order,number,remark,createdById)
        VALUES
        
            (#{xxList.dealeridd},#{xxList.order},#{xxList.number},#{xxList.remark},
            #{xxList.createdById})
        
    


可以发现,在执行这个sql时,只执行一条存储SQL语句,提高了效率

附:数据库连接配置

server:
  port: 8080
spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/linuxdemo?serverTimezone=Asia/Shanghai&useSSL=false&useUnicode=true&characterEncoding=utf-8
    username: root
    password: root
    #type: com.alibaba.druid.pool.DruidDataSource
mybatis-plus:
  mapper-locations: classpath:mapper/*.xml
  global-config:
    db-config:
      id-type: auto
      field-strategy: NOT_EMPTY
      db-type: MYSQL
  configuration:
    map-underscore-to-camel-case: true
    call-setters-on-nulls: true
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl

你可能感兴趣的:(数据库)