Interface MongoRepository<T,ID>
- All Superinterfaces:
CrudRepository<T,
,ID> ListCrudRepository<T,
,ID> ListPagingAndSortingRepository<T,
,ID> PagingAndSortingRepository<T,
,ID> QueryByExampleExecutor<T>
,Repository<T,
ID>
- All Known Implementing Classes:
SimpleMongoRepository
@NoRepositoryBean
public interface MongoRepository<T,ID>
extends ListCrudRepository<T,ID>, ListPagingAndSortingRepository<T,ID>, QueryByExampleExecutor<T>
Mongo specific
Repository
interface.- Author:
- Oliver Gierke, Christoph Strobl, Thomas Darimont, Mark Paluch, Khaled Baklouti
-
Method Summary
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save
Methods inherited from interface org.springframework.data.repository.ListCrudRepository
findAll, findAllById, saveAll
Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository
findAll
Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
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 usingCrudRepository.save(Object)
instead to avoid the usage of store-specific API.- Parameters:
entity
- must not be null.- Returns:
- the saved entity
- Since:
- 1.7
-
insert
Inserts the given entities. Assumes the given entities to have not been persisted yet and thus will optimize the insert over a call toListCrudRepository.saveAll(Iterable)
. Prefer usingListCrudRepository.saveAll(Iterable)
to avoid the usage of store specific API.- Parameters:
entities
- must not be null.- Returns:
- the saved entities
- Since:
- 1.7
-
findAll
Returns all entities matching the givenExample
. In case no match could be found an emptyList
is returned.
By default theExample
uses 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 anUntypedExampleMatcher
withExample.of(Object, org.springframework.data.domain.ExampleMatcher)
.- Specified by:
findAll
in interfaceQueryByExampleExecutor<T>
- See Also:
-
findAll
Returns all entities matching the givenExample
applying the givenSort
. In case no match could be found an emptyList
is returned.
By default theExample
uses 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 anUntypedExampleMatcher
withExample.of(Object, org.springframework.data.domain.ExampleMatcher)
.- Specified by:
findAll
in interfaceQueryByExampleExecutor<T>
- See Also:
-