我有一个spring-boot应用程序 application.yml
:
spring:
datasource:
driver-class-name: org.postgresql.Driver
url: *my_url*
password: *my_pass*
username: *my_username*
jpa:
properties:
hibernate:
jdbc:
batch_size: 15
#order_inserts: true
#order_updates: true
#batch_versioned_data: true
当我尝试使用该方法保存200000个实体时 saveAll(Iterable<S> entities)
,它同时保存所有200000个实体,但我希望一次保存15个实体的批。
可以使用spring数据吗 SimpleJpaRepository
hibernate的那批?
1条答案
按热度按时间mbyulnm01#
我的方法)
工作示例和测试