@NoRepositoryBean
public interface Xs2aCrudRepository<T,ID extends Serializable>
extends org.springframework.data.repository.CrudRepository<T,ID>
| Modifier and Type | Method and Description |
|---|---|
default <S extends T> |
save(Iterable<S> entities)
This method was added to support x2sa code depended on spring-data 1.x with spring boot 2.x
Starting with spring data v2.x save(Iterable) was replaced by
CrudRepository.saveAll(java.lang.Iterable<S>) |
default <S extends T> Iterable<S> save(Iterable<S> entities)
CrudRepository.saveAll(java.lang.Iterable<S>)S - entity classentities - must not be nullIllegalArgumentException - in case the given entity is null.Copyright © 2019. All rights reserved.