如何使用Spring Data JPA实现批量保存

时间:2018-12-22 12:28:20

标签: spring spring-batch

我正在使用@Tranaction级方法注释。我尝试了多种方法,但是记录是一个接一个地插入的。

1 个答案:

答案 0 :(得分:1)

如果使用Hibernate,则需要显式启用批处理,请使用以下属性 在 application.properties

spring.jpa.properties.hibernate.jdbc.batch_size=20
spring.jpa.properties.hibernate.order_inserts=true
spring.jpa.properties.hibernate.order_updates=true
spring.jpa.properties.hibernate.jdbc.batch_versioned_data=true