The CrudRepository interface has two save methods:
Java
<S extends T> S save(S entity);
<S extends T> Iterable<S> saveAll(Iterable<S> entities)Kotlin
fun <S : T> save(entity: S): S
fun <S : T> saveAll(entities: Iterable<S>): Iterable<S>Select all actions that correspond to these methods.