like ``` @Transactional fun saveSeveral(list: Some...
# spring
c
like
Copy code
@Transactional fun saveSeveral(list: Something) {
  list.forEach(repo::save)
}
will most probably cache/batch separate saves, but it will return only when transaction was completed.