public class SimpleMongoRepository<T,ID extends Serializable> extends Object implements MongoRepository<T,ID>
| Constructor and Description |
|---|
SimpleMongoRepository(MongoEntityInformation<T,ID> metadata,
MongoOperations mongoOperations)
|
| Modifier and Type | Method and Description |
|---|---|
long |
count() |
<S extends T> |
count(org.springframework.data.domain.Example<S> example) |
void |
delete(ID id) |
void |
delete(Iterable<? extends T> entities) |
void |
delete(T entity) |
void |
deleteAll() |
<S extends T> |
exists(org.springframework.data.domain.Example<S> example) |
boolean |
exists(ID id) |
List<T> |
findAll() |
<S extends T> |
findAll(org.springframework.data.domain.Example<S> example) |
<S extends T> |
findAll(org.springframework.data.domain.Example<S> example,
org.springframework.data.domain.Pageable pageable) |
<S extends T> |
findAll(org.springframework.data.domain.Example<S> example,
org.springframework.data.domain.Sort sort) |
Iterable<T> |
findAll(Iterable<ID> ids) |
org.springframework.data.domain.Page<T> |
findAll(org.springframework.data.domain.Pageable pageable) |
List<T> |
findAll(org.springframework.data.domain.Sort sort) |
<S extends T> |
findOne(org.springframework.data.domain.Example<S> example) |
T |
findOne(ID id) |
<S extends T> |
insert(Iterable<S> entities)
Inserts the given entities.
|
<S extends T> |
insert(S entity)
Inserts the given entity.
|
<S extends T> |
save(Iterable<S> entities) |
<S extends T> |
save(S entity) |
public SimpleMongoRepository(MongoEntityInformation<T,ID> metadata, MongoOperations mongoOperations)
metadata - must not be null.mongoOperations - must not be null.public <S extends T> S save(S entity)
save in interface org.springframework.data.repository.CrudRepository<T,ID extends Serializable>public <S extends T> List<S> save(Iterable<S> entities)
save in interface MongoRepository<T,ID extends Serializable>save in interface org.springframework.data.repository.CrudRepository<T,ID extends Serializable>public T findOne(ID id)
findOne in interface org.springframework.data.repository.CrudRepository<T,ID extends Serializable>public boolean exists(ID id)
exists in interface org.springframework.data.repository.CrudRepository<T,ID extends Serializable>public long count()
count in interface org.springframework.data.repository.CrudRepository<T,ID extends Serializable>public void delete(ID id)
delete in interface org.springframework.data.repository.CrudRepository<T,ID extends Serializable>public void delete(T entity)
delete in interface org.springframework.data.repository.CrudRepository<T,ID extends Serializable>public void delete(Iterable<? extends T> entities)
delete in interface org.springframework.data.repository.CrudRepository<T,ID extends Serializable>public void deleteAll()
deleteAll in interface org.springframework.data.repository.CrudRepository<T,ID extends Serializable>public List<T> findAll()
findAll in interface MongoRepository<T,ID extends Serializable>findAll in interface org.springframework.data.repository.CrudRepository<T,ID extends Serializable>public Iterable<T> findAll(Iterable<ID> ids)
findAll in interface org.springframework.data.repository.CrudRepository<T,ID extends Serializable>public org.springframework.data.domain.Page<T> findAll(org.springframework.data.domain.Pageable pageable)
findAll in interface org.springframework.data.repository.PagingAndSortingRepository<T,ID extends Serializable>public List<T> findAll(org.springframework.data.domain.Sort sort)
findAll in interface MongoRepository<T,ID extends Serializable>findAll in interface org.springframework.data.repository.PagingAndSortingRepository<T,ID extends Serializable>public <S extends T> S insert(S entity)
MongoRepositoryCrudRepository.save(Object) instead to avoid the usage of store-specific API.insert in interface MongoRepository<T,ID extends Serializable>entity - must not be null.public <S extends T> List<S> insert(Iterable<S> entities)
MongoRepositoryMongoRepository.save(Iterable). Prefer using MongoRepository.save(Iterable) to avoid the usage of store
specific API.insert in interface MongoRepository<T,ID extends Serializable>entities - must not be null.public <S extends T> org.springframework.data.domain.Page<S> findAll(org.springframework.data.domain.Example<S> example, org.springframework.data.domain.Pageable pageable)
findAll in interface org.springframework.data.repository.query.QueryByExampleExecutor<T>public <S extends T> List<S> findAll(org.springframework.data.domain.Example<S> example, org.springframework.data.domain.Sort sort)
findAll in interface MongoRepository<T,ID extends Serializable>findAll in interface org.springframework.data.repository.query.QueryByExampleExecutor<T>public <S extends T> List<S> findAll(org.springframework.data.domain.Example<S> example)
findAll in interface MongoRepository<T,ID extends Serializable>findAll in interface org.springframework.data.repository.query.QueryByExampleExecutor<T>public <S extends T> S findOne(org.springframework.data.domain.Example<S> example)
findOne in interface org.springframework.data.repository.query.QueryByExampleExecutor<T>public <S extends T> long count(org.springframework.data.domain.Example<S> example)
count in interface org.springframework.data.repository.query.QueryByExampleExecutor<T>Copyright © 2011–2017 Pivotal Software, Inc.. All rights reserved.