0铸鹰、簡介
MyBaties-Plus 是 MyBaties 的增強(qiáng)版辜昵,MyBaties 有的功能它都有掉弛,MyBaties 沒有的功能它也有杀糯。MP 有許多優(yōu)點(diǎn)扫俺,但是這里我只記錄批量插入的方法,好處是大數(shù)據(jù)量速度相對(duì)來說很快固翰,有興趣的可以自己做下對(duì)比狼纬。實(shí)現(xiàn)步驟如下。
1骂际、引入 POM
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.4.3.4</version>
</dependency>
2疗琉、實(shí)體類
@TableName("t_a")
public class A{
@TableId(value = "id", type = IdType.AUTO)
private Long id;
}
3、Mapper 接口
public interface AMapperextends BaseMapper<A>{}
4歉铝、service 接口
public interface IAService extends IService<A> {}
5盈简、Impl 實(shí)現(xiàn)類
public class AServiceImpl extends ServiceImpl<AMapper, A> implements IAService {}
6、MySQL 連接參數(shù)最后上加如下參數(shù) ==(重要)==
# &rewriteBatchedStatements=true 告訴 jdbc 要使用批處理
jdbc:mysql://ip:3306/t_test?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&rewriteBatchedStatements=true
7太示、使用批量插入
public class testService {
@Autowired
private IAService aService;
public void test(List<A> list) {
aService.saveBatch(list);
}
}
記錄如有不對(duì)煩請(qǐng)指出柠贤,先行感謝