Module spring.data.mongodb
Interface ReactiveMongoRepository<T,ID>
- All Superinterfaces:
ReactiveCrudRepository<T,,ID> ReactiveQueryByExampleExecutor<T>,ReactiveSortingRepository<T,,ID> Repository<T,ID>
- All Known Implementing Classes:
SimpleReactiveMongoRepository
@NoRepositoryBean
public interface ReactiveMongoRepository<T,ID>
extends ReactiveCrudRepository<T,ID>, ReactiveSortingRepository<T,ID>, ReactiveQueryByExampleExecutor<T>
Mongo specific
Repository interface with reactive support.- Since:
- 2.0
- Author:
- Mark Paluch
-
Method Summary
Methods inherited from interface org.springframework.data.repository.reactive.ReactiveCrudRepository
count, delete, deleteAll, deleteAll, deleteAll, deleteAllById, deleteById, deleteById, existsById, existsById, findAll, findAllById, findAllById, findById, findById, save, saveAll, saveAllMethods inherited from interface org.springframework.data.repository.query.ReactiveQueryByExampleExecutor
count, exists, findBy, findOneMethods inherited from interface org.springframework.data.repository.reactive.ReactiveSortingRepository
findAll
-
Method Details
-
insert
Inserts the given entity. Assumes the instance to be new to be able to apply insertion optimizations. Use the returned instance for further operations as the save operation might have changed the entity instance completely. Prefer usingReactiveCrudRepository.save(Object)instead to avoid the usage of store-specific API.- Parameters:
entity- must not be null.- Returns:
- the saved entity
-
insert
Inserts the given entities. Assumes the instance to be new to be able to apply insertion optimizations. Use the returned instance for further operations as the save operation might have changed the entity instance completely. Prefer usingReactiveCrudRepository.save(Object)instead to avoid the usage of store-specific API.- Parameters:
entities- must not be null.- Returns:
- the saved entity
-
insert
Inserts the given entities. Assumes the instance to be new to be able to apply insertion optimizations. Use the returned instance for further operations as the save operation might have changed the entity instance completely. Prefer usingReactiveCrudRepository.save(Object)instead to avoid the usage of store-specific API.- Parameters:
entities- must not be null.- Returns:
- the saved entity
-
findAll
Returns all entities matching the givenExample. In case no match could be found an emptyFluxis returned.
By default theExampleuses typed matching restricting it to probe assignable types. For example, when sticking with the default type key (_class), the query has restrictions such as_class : { $in : [com.acme.Person] }.
To avoid the above mentioned type restriction use anUntypedExampleMatcherwithExample.of(Object, org.springframework.data.domain.ExampleMatcher).- Specified by:
findAllin interfaceReactiveQueryByExampleExecutor<T>- See Also:
-
findAll
Returns all entities matching the givenExampleapplying the givenSort. In case no match could be found an emptyFluxis returned.
By default theExampleuses typed matching restricting it to probe assignable types. For example, when sticking with the default type key (_class), the query has restrictions such as_class : { $in : [com.acme.Person] }.
To avoid the above mentioned type restriction use anUntypedExampleMatcherwithExample.of(Object, org.springframework.data.domain.ExampleMatcher).- Specified by:
findAllin interfaceReactiveQueryByExampleExecutor<T>- See Also:
-