Since there's a saveAndFlush()
, is there a way to
Flush the updated entities when using saveAll()
?
I'm trying to update entities by batch.
Will really be a big help!
Thank you!
No need to manually call flush()
after saveAll()
, just create a default
method. Eg of Person
:
@Repository
interface PersonRepo extends JpaRepository<Person, String> {
default List<Person> saveAllAndFlush(Iterable<Person> iterable) {
List<Person> list = saveAll(iterable);
flush();
return list;
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With