Interface MongoOperations
- All Superinterfaces:
ExecutableAggregationOperation,ExecutableFindOperation,ExecutableInsertOperation,ExecutableMapReduceOperation,ExecutableRemoveOperation,ExecutableUpdateOperation,FluentMongoOperations
- All Known Implementing Classes:
MongoTemplate
MongoTemplate. Not often used but
a useful option for extensibility and testability (as it can be easily mocked, stubbed, or be the target of a JDK
proxy). NOTE: Some operations cannot be executed within a MongoDB transaction. Please refer to the MongoDB specific documentation to learn more about Multi Document Transactions.
- Author:
- Thomas Risberg, Mark Pollack, Oliver Gierke, Tobias Trelle, Chuong Ngo, Christoph Strobl, Thomas Darimont, Maninder Singh, Mark Paluch, Woojin Shin
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.springframework.data.mongodb.core.ExecutableAggregationOperation
ExecutableAggregationOperation.AggregationWithAggregation<T>, ExecutableAggregationOperation.AggregationWithCollection<T>, ExecutableAggregationOperation.ExecutableAggregation<T>, ExecutableAggregationOperation.TerminatingAggregation<T>Nested classes/interfaces inherited from interface org.springframework.data.mongodb.core.ExecutableFindOperation
ExecutableFindOperation.DistinctWithProjection, ExecutableFindOperation.DistinctWithQuery<T>, ExecutableFindOperation.ExecutableFind<T>, ExecutableFindOperation.FindDistinct, ExecutableFindOperation.FindWithCollection<T>, ExecutableFindOperation.FindWithProjection<T>, ExecutableFindOperation.FindWithQuery<T>, ExecutableFindOperation.TerminatingDistinct<T>, ExecutableFindOperation.TerminatingFind<T>, ExecutableFindOperation.TerminatingFindNear<T>Nested classes/interfaces inherited from interface org.springframework.data.mongodb.core.ExecutableInsertOperation
ExecutableInsertOperation.ExecutableInsert<T>, ExecutableInsertOperation.InsertWithBulkMode<T>, ExecutableInsertOperation.InsertWithCollection<T>, ExecutableInsertOperation.TerminatingBulkInsert<T>, ExecutableInsertOperation.TerminatingInsert<T>Nested classes/interfaces inherited from interface org.springframework.data.mongodb.core.ExecutableMapReduceOperation
ExecutableMapReduceOperation.ExecutableMapReduce<T>, ExecutableMapReduceOperation.MapReduceWithCollection<T>, ExecutableMapReduceOperation.MapReduceWithMapFunction<T>, ExecutableMapReduceOperation.MapReduceWithOptions<T>, ExecutableMapReduceOperation.MapReduceWithProjection<T>, ExecutableMapReduceOperation.MapReduceWithQuery<T>, ExecutableMapReduceOperation.MapReduceWithReduceFunction<T>, ExecutableMapReduceOperation.TerminatingMapReduce<T>Nested classes/interfaces inherited from interface org.springframework.data.mongodb.core.ExecutableRemoveOperation
ExecutableRemoveOperation.ExecutableRemove<T>, ExecutableRemoveOperation.RemoveWithCollection<T>, ExecutableRemoveOperation.RemoveWithQuery<T>, ExecutableRemoveOperation.TerminatingRemove<T>Nested classes/interfaces inherited from interface org.springframework.data.mongodb.core.ExecutableUpdateOperation
ExecutableUpdateOperation.ExecutableUpdate<T>, ExecutableUpdateOperation.FindAndModifyWithOptions<T>, ExecutableUpdateOperation.FindAndReplaceWithOptions<T>, ExecutableUpdateOperation.FindAndReplaceWithProjection<T>, ExecutableUpdateOperation.ReplaceWithOptions, ExecutableUpdateOperation.TerminatingFindAndModify<T>, ExecutableUpdateOperation.TerminatingFindAndReplace<T>, ExecutableUpdateOperation.TerminatingReplace, ExecutableUpdateOperation.TerminatingUpdate<T>, ExecutableUpdateOperation.UpdateWithCollection<T>, ExecutableUpdateOperation.UpdateWithQuery<T>, ExecutableUpdateOperation.UpdateWithUpdate<T> -
Method Summary
Modifier and TypeMethodDescription<O> AggregationResults<O>aggregate(Aggregation aggregation, Class<?> inputType, Class<O> outputType) Execute an aggregation operation.<O> AggregationResults<O>aggregate(Aggregation aggregation, String collectionName, Class<O> outputType) Execute an aggregation operation.<O> AggregationResults<O>aggregate(TypedAggregation<?> aggregation, Class<O> outputType) Execute an aggregation operation.<O> AggregationResults<O>aggregate(TypedAggregation<?> aggregation, String collectionName, Class<O> outputType) Execute an aggregation operation.<O> Stream<O>aggregateStream(Aggregation aggregation, Class<?> inputType, Class<O> outputType) Execute an aggregation operation backed by a Mongo DBAggregateIterable.<O> Stream<O>aggregateStream(Aggregation aggregation, String collectionName, Class<O> outputType) Execute an aggregation operation backed by a Mongo DBAggregateIterable.<O> Stream<O>aggregateStream(TypedAggregation<?> aggregation, Class<O> outputType) Execute an aggregation operation backed by a Mongo DBAggregateIterable.<O> Stream<O>aggregateStream(TypedAggregation<?> aggregation, String collectionName, Class<O> outputType) Execute an aggregation operation backed by a Mongo DBAggregateIterable.bulkOps(BulkOperations.BulkMode mode, Class<?> entityType) Returns a newBulkOperationsfor the given entity type.bulkOps(BulkOperations.BulkMode mode, Class<?> entityType, String collectionName) Returns a newBulkOperationsfor the given entity type and collection name.bulkOps(BulkOperations.BulkMode mode, String collectionName) Returns a newBulkOperationsfor the given collection.<T> booleancollectionExists(Class<T> entityClass) Check to see if a collection with a name indicated by the entity class exists.booleancollectionExists(String collectionName) Check to see if a collection with a given name exists.longReturns the number of documents for the givenQueryby querying the collection of the given entity class.longlongReturns the number of documents for the givenQueryquerying the given collection.<T> com.mongodb.client.MongoCollection<org.bson.Document>createCollection(Class<T> entityClass) Create an uncapped collection with a name based on the provided entity class.<T> com.mongodb.client.MongoCollection<org.bson.Document>createCollection(Class<T> entityClass, CollectionOptions collectionOptions) Create a collection with a name based on the provided entity class using the options.com.mongodb.client.MongoCollection<org.bson.Document>createCollection(String collectionName) Create an uncapped collection with the provided name.com.mongodb.client.MongoCollection<org.bson.Document>createCollection(String collectionName, CollectionOptions collectionOptions) Create a collection with the provided name and options.default com.mongodb.client.MongoCollection<org.bson.Document>createView(String name, Class<?> source, AggregationOperation... stages) Create a view with the provided name.default com.mongodb.client.MongoCollection<org.bson.Document>createView(String name, Class<?> source, AggregationPipeline pipeline) Create a view with the provided name.com.mongodb.client.MongoCollection<org.bson.Document>createView(String name, Class<?> source, AggregationPipeline pipeline, ViewOptions options) Create a view with the provided name.com.mongodb.client.MongoCollection<org.bson.Document>createView(String name, String source, AggregationPipeline pipeline, ViewOptions options) Create a view with the provided name.<T> voiddropCollection(Class<T> entityClass) Drop the collection with the name indicated by the entity class.voiddropCollection(String collectionName) Drop the collection with the given name.default longestimatedCount(Class<?> entityClass) Estimate the number of documents, in the collectionidentified by the given type, based on collection statistics.longestimatedCount(String collectionName) Estimate the number of documents in the given collection based on collection statistics.default longexactCount(Query query, Class<?> entityClass) Returns the number of documents for the givenQueryby querying the collection of the given entity class.longexactCount(Query query, Class<?> entityClass, String collectionName) default longexactCount(Query query, String collectionName) Returns the number of documents for the givenQueryquerying the given collection.<T> Texecute(Class<?> entityClass, CollectionCallback<T> action) Executes the givenCollectionCallbackon the entity collection of the specified class.<T> Texecute(String collectionName, CollectionCallback<T> action) Executes the givenCollectionCallbackon the collection of the given name.<T> Texecute(DbCallback<T> action) Executes aDbCallbacktranslating any exceptions as necessary.org.bson.DocumentexecuteCommand(String jsonCommand) Execute a MongoDB command expressed as a JSON string.org.bson.DocumentexecuteCommand(org.bson.Document command) Execute a MongoDB command.org.bson.DocumentexecuteCommand(org.bson.Document command, com.mongodb.ReadPreference readPreference) Execute a MongoDB command.voidexecuteQuery(Query query, String collectionName, DocumentCallbackHandler dch) Execute a MongoDB query and iterate over the query results on a per-document basis with a DocumentCallbackHandler.booleanDetermine result of givenQuerycontains at least one element.booleanDetermine result of givenQuerycontains at least one element.booleanDetermine result of givenQuerycontains at least one element.<T> List<T>Map the results of an ad-hoc query on the collection for the entity class to a List of the specified type.<T> List<T>Map the results of an ad-hoc query on the specified collection to a List of the specified type.<T> List<T>Query for a list of objects of type T from the collection used by the entity class.<T> List<T>Query for a list of objects of type T from the specified collection.<T> List<T>findAllAndRemove(Query query, Class<T> entityClass) Returns and removes all documents matching the given query form the collection used to store the entityClass.<T> List<T>findAllAndRemove(Query query, Class<T> entityClass, String collectionName) Returns and removes all documents that match the provided query document criteria from the collection used to store the entityClass.<T> List<T>findAllAndRemove(Query query, String collectionName) Returns and removes all documents form the specified collection that match the provided query.<T> TfindAndModify(Query query, UpdateDefinition update, Class<T> entityClass) <T> TfindAndModify(Query query, UpdateDefinition update, Class<T> entityClass, String collectionName) <T> TfindAndModify(Query query, UpdateDefinition update, FindAndModifyOptions options, Class<T> entityClass) Triggers findAndModify to apply providedUpdateon documents matchingCriteriaof givenQuerytakingFindAndModifyOptionsinto account.<T> TfindAndModify(Query query, UpdateDefinition update, FindAndModifyOptions options, Class<T> entityClass, String collectionName) Triggers findAndModify to apply providedUpdateon documents matchingCriteriaof givenQuerytakingFindAndModifyOptionsinto account.<T> TfindAndRemove(Query query, Class<T> entityClass) Map the results of an ad-hoc query on the collection for the entity type to a single instance of an object of the specified type.<T> TfindAndRemove(Query query, Class<T> entityClass, String collectionName) Map the results of an ad-hoc query on the specified collection to a single instance of an object of the specified type.default <S,T> T findAndReplace(Query query, S replacement, FindAndReplaceOptions options, Class<S> entityType, Class<T> resultType) Triggers findOneAndReplace to replace a single document matchingCriteriaof givenQuerywith thereplacementdocument takingFindAndReplaceOptionsinto account.
NOTE: The replacement entity must not hold an id.<S,T> T findAndReplace(Query query, S replacement, FindAndReplaceOptions options, Class<S> entityType, String collectionName, Class<T> resultType) Triggers findOneAndReplace to replace a single document matchingCriteriaof givenQuerywith thereplacementdocument takingFindAndReplaceOptionsinto account.
NOTE: The replacement entity must not hold an id.default <T> TfindAndReplace(Query query, T replacement) Triggers findOneAndReplace to replace a single document matchingCriteriaof givenQuerywith thereplacementdocument.default <T> TfindAndReplace(Query query, T replacement, String collectionName) Triggers findOneAndReplace to replace a single document matchingCriteriaof givenQuerywith thereplacementdocument.
Options are defaulted toFindAndReplaceOptions.empty().default <T> TfindAndReplace(Query query, T replacement, FindAndReplaceOptions options) Triggers findOneAndReplace to replace a single document matchingCriteriaof givenQuerywith thereplacementdocument takingFindAndReplaceOptionsinto account.
NOTE: The replacement entity must not hold an id.default <T> TfindAndReplace(Query query, T replacement, FindAndReplaceOptions options, Class<T> entityType, String collectionName) Triggers findOneAndReplace to replace a single document matchingCriteriaof givenQuerywith thereplacementdocument takingFindAndReplaceOptionsinto account.
NOTE: The replacement entity must not hold an id.default <T> TfindAndReplace(Query query, T replacement, FindAndReplaceOptions options, String collectionName) Triggers findOneAndReplace to replace a single document matchingCriteriaof givenQuerywith thereplacementdocument takingFindAndReplaceOptionsinto account.
NOTE: The replacement entity must not hold an id.<T> TReturns a document with the given id mapped onto the given class.<T> TReturns the document with the given id from the given collection mapped onto the given target class.default <T> List<T>findDistinct(String field, Class<?> entityClass, Class<T> resultClass) Finds the distinct values for a specified field across a singleMongoCollectionor view and returns the results in aList.<T> List<T>findDistinct(Query query, String field, Class<?> entityClass, Class<T> resultClass) Finds the distinct values for a specified field across a singleMongoCollectionor view and returns the results in aList.<T> List<T>findDistinct(Query query, String field, String collectionName, Class<?> entityClass, Class<T> resultClass) Finds the distinct values for a specified field across a singleMongoCollectionor view and returns the results in aList.default <T> List<T>findDistinct(Query query, String field, String collection, Class<T> resultClass) Finds the distinct values for a specified field across a singleMongoCollectionor view and returns the results in aList.<T> TMap the results of an ad-hoc query on the collection for the entity class to a single instance of an object of the specified type.<T> TMap the results of an ad-hoc query on the specified collection to a single instance of an object of the specified type.<T> GeoResults<T>Deprecated.since 2.2.<T> GeoResults<T>Deprecated.since 2.2.com.mongodb.client.MongoCollection<org.bson.Document>getCollection(String collectionName) Get aMongoCollectionby its name.getCollectionName(Class<?> entityClass) The collection name used for the specified class by this template.A set of collection names.Returns the underlyingMongoConverter.Returns the operations that can be performed on indexesReturns the operations that can be performed on indexes<T> Collection<T>insert(Collection<? extends T> batchToSave, Class<?> entityClass) Insert a Collection of objects into a collection in a single batch write to the database.<T> Collection<T>insert(Collection<? extends T> batchToSave, String collectionName) Insert a batch of objects into the specified collection in a single batch write to the database.<T> Tinsert(T objectToSave) Insert the object into the collection for the entity type of the object to save.<T> TInsert the object into the specified collection.<T> Collection<T>insertAll(Collection<? extends T> objectsToSave) Insert a mixed Collection of objects into a database collection determining the collection name to use based on the class.<T> MapReduceResults<T>mapReduce(String inputCollectionName, String mapFunction, String reduceFunction, Class<T> entityClass) Deprecated.since 3.4 in favor ofaggregate(TypedAggregation, Class).<T> MapReduceResults<T>mapReduce(String inputCollectionName, String mapFunction, String reduceFunction, MapReduceOptions mapReduceOptions, Class<T> entityClass) Deprecated.since 3.4 in favor ofaggregate(TypedAggregation, Class).<T> MapReduceResults<T>mapReduce(Query query, String inputCollectionName, String mapFunction, String reduceFunction, Class<T> entityClass) Deprecated.since 3.4 in favor ofaggregate(TypedAggregation, Class).<T> MapReduceResults<T>mapReduce(Query query, String inputCollectionName, String mapFunction, String reduceFunction, MapReduceOptions mapReduceOptions, Class<T> entityClass) Deprecated.since 3.4 in favor ofaggregate(TypedAggregation, Class).com.mongodb.client.result.DeleteResultRemove the given object from the collection by id and (if applicable) itsVersion.com.mongodb.client.result.DeleteResultRemoves the given object from the given collection by id and (if applicable) itsVersion.com.mongodb.client.result.DeleteResultRemove all documents that match the provided query document criteria from the collection used to store the entityClass.com.mongodb.client.result.DeleteResultRemove all documents that match the provided query document criteria from the collection used to store the entityClass.com.mongodb.client.result.DeleteResultRemove all documents from the specified collection that match the provided query document criteria.default <T> com.mongodb.client.result.UpdateResultdefault <T> com.mongodb.client.result.UpdateResultdefault <T> com.mongodb.client.result.UpdateResultreplace(Query query, T replacement, ReplaceOptions options) Replace a single document matching theCriteriaof givenQuerywith thereplacementdocument takingReplaceOptionsinto account.<T> com.mongodb.client.result.UpdateResultreplace(Query query, T replacement, ReplaceOptions options, String collectionName) Replace a single document matching theCriteriaof givenQuerywith thereplacementdocument takingReplaceOptionsinto account.<T> Tsave(T objectToSave) Save the object to the collection for the entity type of the object to save.<T> TSave the object to the specified collection.Deprecated.since 2.2.<T> Window<T>Query for a window of objects of type T from the specified collection.<T> Window<T>Query for a window of objects of type T from the specified collection.<T> Stream<T>Executes the givenQueryon the entity collection of the specifiedentityTypebacked by a Mongo DBFindIterable.<T> Stream<T>Executes the givenQueryon the entity collection of the specifiedentityTypeand collection backed by a Mongo DBFindIterable.com.mongodb.client.result.UpdateResultupdateFirst(Query query, UpdateDefinition update, Class<?> entityClass) Updates the first object that is found in the collection of the entity class that matches the query document with the provided update document.com.mongodb.client.result.UpdateResultupdateFirst(Query query, UpdateDefinition update, Class<?> entityClass, String collectionName) Updates the first object that is found in the specified collection that matches the query document criteria with the provided updated document.com.mongodb.client.result.UpdateResultupdateFirst(Query query, UpdateDefinition update, String collectionName) Updates the first object that is found in the specified collection that matches the query document criteria with the provided updated document.com.mongodb.client.result.UpdateResultupdateMulti(Query query, UpdateDefinition update, Class<?> entityClass) Updates all objects that are found in the collection for the entity class that matches the query document criteria with the provided updated document.com.mongodb.client.result.UpdateResultupdateMulti(Query query, UpdateDefinition update, Class<?> entityClass, String collectionName) Updates all objects that are found in the collection for the entity class that matches the query document criteria with the provided updated document.com.mongodb.client.result.UpdateResultupdateMulti(Query query, UpdateDefinition update, String collectionName) Updates all objects that are found in the specified collection that matches the query document criteria with the provided updated document.com.mongodb.client.result.UpdateResultupsert(Query query, UpdateDefinition update, Class<?> entityClass) Performs an upsert.com.mongodb.client.result.UpdateResultupsert(Query query, UpdateDefinition update, Class<?> entityClass, String collectionName) Performs an upsert.com.mongodb.client.result.UpdateResultupsert(Query query, UpdateDefinition update, String collectionName) Performs an upsert.withSession(com.mongodb.client.ClientSession session) Obtain aClientSessionbound instance ofMongoOperations.withSession(com.mongodb.ClientSessionOptions sessionOptions) Obtain asessionbound instance ofSessionScopedbinding a newClientSessionwith given sessionOptions to each and every command issued against MongoDB.default SessionScopedwithSession(Supplier<com.mongodb.client.ClientSession> sessionProvider) Obtain asessionbound instance ofSessionScopedbinding theClientSessionprovided by the givenSupplierto each and every command issued against MongoDB.Methods inherited from interface org.springframework.data.mongodb.core.ExecutableAggregationOperation
aggregateAndReturnMethods inherited from interface org.springframework.data.mongodb.core.ExecutableFindOperation
queryMethods inherited from interface org.springframework.data.mongodb.core.ExecutableInsertOperation
insertMethods inherited from interface org.springframework.data.mongodb.core.ExecutableMapReduceOperation
mapReduceMethods inherited from interface org.springframework.data.mongodb.core.ExecutableRemoveOperation
removeMethods inherited from interface org.springframework.data.mongodb.core.ExecutableUpdateOperation
update
-
Method Details
-
getCollectionName
The collection name used for the specified class by this template.- Parameters:
entityClass- must not be null.- Returns:
- never null.
- Throws:
MappingException- if the collection name cannot be derived from the type.
-
executeCommand
Execute a MongoDB command expressed as a JSON string. Parsing is delegated toDocument.parse(String)to obtain theDocumentholding the actual command. Any errors that result from executing this command will be converted into Spring's DAO exception hierarchy.- Parameters:
jsonCommand- a MongoDB command expressed as a JSON string. Must not be null.- Returns:
- a result object returned by the action.
-
executeCommand
org.bson.Document executeCommand(org.bson.Document command) Execute a MongoDB command. Any errors that result from executing this command will be converted into Spring's DAO exception hierarchy.- Parameters:
command- a MongoDB command.- Returns:
- a result object returned by the action.
-
executeCommand
org.bson.Document executeCommand(org.bson.Document command, @Nullable com.mongodb.ReadPreference readPreference) Execute a MongoDB command. Any errors that result from executing this command will be converted into Spring's data access exception hierarchy.- Parameters:
command- a MongoDB command, must not be null.readPreference- read preferences to use, can be null.- Returns:
- a result object returned by the action.
- Since:
- 1.7
-
executeQuery
Execute a MongoDB query and iterate over the query results on a per-document basis with a DocumentCallbackHandler.- Parameters:
query- the query class that specifies the criteria used to find a document and also an optional fields specification. Must not be null.collectionName- name of the collection to retrieve the objects from.dch- the handler that will extract results, one document at a time.
-
execute
Executes aDbCallbacktranslating any exceptions as necessary.
Allows for returning a result object, that is a domain object or a collection of domain objects.- Type Parameters:
T- return type.- Parameters:
action- callback object that specifies the MongoDB actions to perform on the passed in DB instance. Must not be null.- Returns:
- a result object returned by the action or null.
-
execute
Executes the givenCollectionCallbackon the entity collection of the specified class.
Allows for returning a result object, that is a domain object or a collection of domain objects.- Type Parameters:
T- return type.- Parameters:
entityClass- class that determines the collection to use. Must not be null.action- callback object that specifies the MongoDB action. Must not be null.- Returns:
- a result object returned by the action or null.
-
execute
Executes the givenCollectionCallbackon the collection of the given name.
Allows for returning a result object, that is a domain object or a collection of domain objects.- Type Parameters:
T- return type.- Parameters:
collectionName- the name of the collection that specifies whichMongoCollectioninstance will be passed into. Must not be null or empty.action- callback object that specifies the MongoDB action the callback action. Must not be null.- Returns:
- a result object returned by the action or null.
-
withSession
Obtain asessionbound instance ofSessionScopedbinding a newClientSessionwith given sessionOptions to each and every command issued against MongoDB.- Parameters:
sessionOptions- must not be null.- Returns:
- new instance of
SessionScoped. Never null. - Since:
- 2.1
-
withSession
Obtain asessionbound instance ofSessionScopedbinding theClientSessionprovided by the givenSupplierto each and every command issued against MongoDB.
Note: It is up to the caller to manage theClientSessionlifecycle. Use theSessionScoped.execute(SessionCallback, Consumer)hook to potentially close theClientSession.- Parameters:
sessionProvider- must not be null.- Since:
- 2.1
-
withSession
Obtain aClientSessionbound instance ofMongoOperations.
Note: It is up to the caller to manage theClientSessionlifecycle.- Parameters:
session- must not be null.- Returns:
ClientSessionbound instance ofMongoOperations.- Since:
- 2.1
-
stream
Executes the givenQueryon the entity collection of the specifiedentityTypebacked by a Mongo DBFindIterable.Returns a
Streamthat wraps the Mongo DBFindIterablethat needs to be closed.- Type Parameters:
T- element return type- Parameters:
query- the query class that specifies the criteria used to find a document and also an optional fields specification. Must not be null.entityType- must not be null.- Returns:
- the result
Stream, containing mapped objects, needing to be closed once fully processed (e.g. through a try-with-resources clause). - Since:
- 1.7
-
stream
Executes the givenQueryon the entity collection of the specifiedentityTypeand collection backed by a Mongo DBFindIterable.Returns a
Streamthat wraps the Mongo DBFindIterablethat needs to be closed.- Type Parameters:
T- element return type- Parameters:
query- the query class that specifies the criteria used to find a document and also an optional fields specification. Must not be null.entityType- must not be null.collectionName- must not be null or empty.- Returns:
- the result
Stream, containing mapped objects, needing to be closed once fully processed (e.g. through a try-with-resources clause). - Since:
- 1.10
-
createCollection
Create an uncapped collection with a name based on the provided entity class.This method derives
CollectionOptionsfrom the givenentityClassusingDocumentandTimeSeriesannotations to determine:- Collation
- TimeSeries time and meta fields, granularity and
expireAfter
createCollection(Class, CollectionOptions)orcreateCollection(String, CollectionOptions).- Parameters:
entityClass- class that determines the collection to create.- Returns:
- the created collection.
- See Also:
-
createCollection
<T> com.mongodb.client.MongoCollection<org.bson.Document> createCollection(Class<T> entityClass, @Nullable CollectionOptions collectionOptions) Create a collection with a name based on the provided entity class using the options.- Parameters:
entityClass- class that determines the collection to create. Must not be null.collectionOptions- options to use when creating the collection.- Returns:
- the created collection.
-
createCollection
Create an uncapped collection with the provided name.- Parameters:
collectionName- name of the collection.- Returns:
- the created collection.
-
createCollection
com.mongodb.client.MongoCollection<org.bson.Document> createCollection(String collectionName, @Nullable CollectionOptions collectionOptions) Create a collection with the provided name and options.- Parameters:
collectionName- name of the collection. Must not be null nor empty.collectionOptions- options to use when creating the collection.- Returns:
- the created collection.
-
createView
default com.mongodb.client.MongoCollection<org.bson.Document> createView(String name, Class<?> source, AggregationOperation... stages) Create a view with the provided name. The view content is defined by thepipeline stageson another collection or view identified by the givensource type.- Parameters:
name- the name of the view to create.source- the type defining the views source collection.stages- theaggregation pipeline stagesdefining the view content.- Since:
- 4.0
-
createView
default com.mongodb.client.MongoCollection<org.bson.Document> createView(String name, Class<?> source, AggregationPipeline pipeline) Create a view with the provided name. The view content is defined by thepipelineon another collection or view identified by the givensource type.- Parameters:
name- the name of the view to create.source- the type defining the views source collection.pipeline- theAggregationPipelinedefining the view content.- Since:
- 4.0
-
createView
com.mongodb.client.MongoCollection<org.bson.Document> createView(String name, Class<?> source, AggregationPipeline pipeline, @Nullable ViewOptions options) Create a view with the provided name. The view content is defined by thepipelineon another collection or view identified by the givensource type.- Parameters:
name- the name of the view to create.source- the type defining the views source collection.pipeline- theAggregationPipelinedefining the view content.options- additional settings to apply when creating the view. Can be null.- Since:
- 4.0
-
createView
com.mongodb.client.MongoCollection<org.bson.Document> createView(String name, String source, AggregationPipeline pipeline, @Nullable ViewOptions options) Create a view with the provided name. The view content is defined by thepipelineon another collection or view identified by the given source.- Parameters:
name- the name of the view to create.source- the name of the collection or view defining the to be created views source.pipeline- theAggregationPipelinedefining the view content.options- additional settings to apply when creating the view. Can be null.- Since:
- 4.0
-
getCollectionNames
A set of collection names.- Returns:
- list of collection names.
-
getCollection
Get aMongoCollectionby its name. The returned collection may not exists yet (except in local memory) and is created on first interaction with the server. Collections can be explicitly created viacreateCollection(Class). Please make sure to check if the collectionexistsfirst.
Translate any exceptions as necessary.- Parameters:
collectionName- name of the collection. Must not be null.- Returns:
- an existing collection or one created on first server interaction.
-
collectionExists
Check to see if a collection with a name indicated by the entity class exists.
Translate any exceptions as necessary.- Parameters:
entityClass- class that determines the name of the collection. Must not be null.- Returns:
- true if a collection with the given name is found, false otherwise.
-
collectionExists
Check to see if a collection with a given name exists.
Translate any exceptions as necessary.- Parameters:
collectionName- name of the collection. Must not be null.- Returns:
- true if a collection with the given name is found, false otherwise.
-
dropCollection
Drop the collection with the name indicated by the entity class.
Translate any exceptions as necessary.- Parameters:
entityClass- class that determines the collection to drop/delete. Must not be null.
-
dropCollection
Drop the collection with the given name.
Translate any exceptions as necessary.- Parameters:
collectionName- name of the collection to drop/delete.
-
indexOps
Returns the operations that can be performed on indexes- Returns:
- index operations on the named collection
-
indexOps
Returns the operations that can be performed on indexes- Returns:
- index operations on the named collection associated with the given entity class
-
scriptOps
Deprecated.since 2.2. Theevalcommand has been removed without replacement in MongoDB Server 4.2.0.Returns theScriptOperationsthat can be performed onMongoDatabaselevel.- Returns:
- never null.
- Since:
- 1.7
-
bulkOps
Returns a newBulkOperationsfor the given collection.
NOTE: Any additional support for field mapping, etc. is not available for update or remove operations in bulk mode due to the lack of domain type information. UsebulkOps(BulkMode, Class, String)to get full type specific support.- Parameters:
mode- theBulkOperations.BulkModeto use for bulk operations, must not be null.collectionName- the name of the collection to work on, must not be null or empty.- Returns:
BulkOperationson the named collection
-
bulkOps
Returns a newBulkOperationsfor the given entity type.- Parameters:
mode- theBulkOperations.BulkModeto use for bulk operations, must not be null.entityType- the name of the entity class, must not be null.- Returns:
BulkOperationson the named collection associated of the given entity class.
-
bulkOps
BulkOperations bulkOps(BulkOperations.BulkMode mode, @Nullable Class<?> entityType, String collectionName) Returns a newBulkOperationsfor the given entity type and collection name.- Parameters:
mode- theBulkOperations.BulkModeto use for bulk operations, must not be null.entityType- the name of the entity class. Can be null.collectionName- the name of the collection to work on, must not be null or empty.- Returns:
BulkOperationson the named collection associated with the given entity class.
-
findAll
Query for a list of objects of type T from the collection used by the entity class.
The object is converted from the MongoDB native representation using an instance of . Unless configured otherwise, an instance ofMappingMongoConverterwill be used.
If your collection does not contain a homogeneous collection of types, this operation will not be an efficient way to map objects since the test for class type is done in the client and not on the server.- Parameters:
entityClass- the parametrized type of the returned list.- Returns:
- the converted collection.
-
findAll
Query for a list of objects of type T from the specified collection.
The object is converted from the MongoDB native representation using an instance of . Unless configured otherwise, an instance ofMappingMongoConverterwill be used.
If your collection does not contain a homogeneous collection of types, this operation will not be an efficient way to map objects since the test for class type is done in the client and not on the server.- Parameters:
entityClass- the parametrized type of the returned list.collectionName- name of the collection to retrieve the objects from.- Returns:
- the converted collection.
-
aggregate
<O> AggregationResults<O> aggregate(TypedAggregation<?> aggregation, String collectionName, Class<O> outputType) Execute an aggregation operation. The raw results will be mapped to the given entity class. The name of the inputCollection is derived from the inputType of the aggregation.- Parameters:
aggregation- TheTypedAggregationspecification holding the aggregation operations, must not be null.collectionName- The name of the input collection to use for the aggreation.outputType- The parametrized type of the returned list, must not be null.- Returns:
- The results of the aggregation operation.
- Since:
- 1.3
-
aggregate
Execute an aggregation operation. The raw results will be mapped to the given entity class. The name of the inputCollection is derived from the inputType of the aggregation.- Parameters:
aggregation- TheTypedAggregationspecification holding the aggregation operations, must not be null.outputType- The parametrized type of the returned list, must not be null.- Returns:
- The results of the aggregation operation.
- Since:
- 1.3
-
aggregate
<O> AggregationResults<O> aggregate(Aggregation aggregation, Class<?> inputType, Class<O> outputType) Execute an aggregation operation. The raw results will be mapped to the given entity class.- Parameters:
aggregation- TheAggregationspecification holding the aggregation operations, must not be null.inputType- the inputType where the aggregation operation will read from, must not be null or empty.outputType- The parametrized type of the returned list, must not be null.- Returns:
- The results of the aggregation operation.
- Since:
- 1.3
-
aggregate
<O> AggregationResults<O> aggregate(Aggregation aggregation, String collectionName, Class<O> outputType) Execute an aggregation operation. The raw results will be mapped to the given entity class.- Parameters:
aggregation- TheAggregationspecification holding the aggregation operations, must not be null.collectionName- the collection where the aggregation operation will read from, must not be null or empty.outputType- The parametrized type of the returned list, must not be null.- Returns:
- The results of the aggregation operation.
- Since:
- 1.3
-
aggregateStream
<O> Stream<O> aggregateStream(TypedAggregation<?> aggregation, String collectionName, Class<O> outputType) Execute an aggregation operation backed by a Mongo DBAggregateIterable.Returns a
Streamthat wraps the Mongo DBAggregateIterablethat needs to be closed. The raw results will be mapped to the given entity class. The name of the inputCollection is derived from the inputType of the aggregation.Aggregation streaming can't be used with
aggregation explain. Enabling explanation mode will throw anIllegalArgumentException.- Parameters:
aggregation- TheTypedAggregationspecification holding the aggregation operations, must not be null.collectionName- The name of the input collection to use for the aggreation.outputType- The parametrized type of the returned list, must not be null.- Returns:
- the result
Stream, containing mapped objects, needing to be closed once fully processed (e.g. through a try-with-resources clause). - Since:
- 2.0
-
aggregateStream
Execute an aggregation operation backed by a Mongo DBAggregateIterable.Returns a
Streamthat wraps the Mongo DBAggregateIterablethat needs to be closed. The raw results will be mapped to the given entity class and are returned as stream. The name of the inputCollection is derived from the inputType of the aggregation.Aggregation streaming can't be used with
aggregation explain. Enabling explanation mode will throw anIllegalArgumentException.- Parameters:
aggregation- TheTypedAggregationspecification holding the aggregation operations, must not be null.outputType- The parametrized type of the returned list, must not be null.- Returns:
- the result
Stream, containing mapped objects, needing to be closed once fully processed (e.g. through a try-with-resources clause). - Since:
- 2.0
-
aggregateStream
Execute an aggregation operation backed by a Mongo DBAggregateIterable.Returns a
Streamthat wraps the Mongo DBAggregateIterablethat needs to be closed. The raw results will be mapped to the given entity class.Aggregation streaming can't be used with
aggregation explain. Enabling explanation mode will throw anIllegalArgumentException.- Parameters:
aggregation- TheAggregationspecification holding the aggregation operations, must not be null.inputType- the inputType where the aggregation operation will read from, must not be null or empty.outputType- The parametrized type of the returned list, must not be null.- Returns:
- the result
Stream, containing mapped objects, needing to be closed once fully processed (e.g. through a try-with-resources clause). - Since:
- 2.0
-
aggregateStream
Execute an aggregation operation backed by a Mongo DBAggregateIterable.Returns a
Streamthat wraps the Mongo DBAggregateIterablethat needs to be closed. The raw results will be mapped to the given entity class.Aggregation streaming can't be used with
aggregation explain. Enabling explanation mode will throw anIllegalArgumentException.- Parameters:
aggregation- TheAggregationspecification holding the aggregation operations, must not be null.collectionName- the collection where the aggregation operation will read from, must not be null or empty.outputType- The parametrized type of the returned list, must not be null.- Returns:
- the result
Stream, containing mapped objects, needing to be closed once fully processed (e.g. through a try-with-resources clause). - Since:
- 2.0
-
mapReduce
@Deprecated <T> MapReduceResults<T> mapReduce(String inputCollectionName, String mapFunction, String reduceFunction, Class<T> entityClass) Deprecated.since 3.4 in favor ofaggregate(TypedAggregation, Class).Execute a map-reduce operation. The map-reduce operation will be formed with an output type of INLINE- Parameters:
inputCollectionName- the collection where the map-reduce will read from. Must not be null.mapFunction- The JavaScript map function.reduceFunction- The JavaScript reduce functionentityClass- The parametrized type of the returned list. Must not be null.- Returns:
- The results of the map reduce operation
-
mapReduce
@Deprecated <T> MapReduceResults<T> mapReduce(String inputCollectionName, String mapFunction, String reduceFunction, @Nullable MapReduceOptions mapReduceOptions, Class<T> entityClass) Deprecated.since 3.4 in favor ofaggregate(TypedAggregation, Class).Execute a map-reduce operation that takes additional map-reduce options.- Parameters:
inputCollectionName- the collection where the map-reduce will read from. Must not be null.mapFunction- The JavaScript map functionreduceFunction- The JavaScript reduce functionmapReduceOptions- Options that specify detailed map-reduce behavior.entityClass- The parametrized type of the returned list. Must not be null.- Returns:
- The results of the map reduce operation
-
mapReduce
@Deprecated <T> MapReduceResults<T> mapReduce(Query query, String inputCollectionName, String mapFunction, String reduceFunction, Class<T> entityClass) Deprecated.since 3.4 in favor ofaggregate(TypedAggregation, Class).Execute a map-reduce operation that takes a query. The map-reduce operation will be formed with an output type of INLINE- Parameters:
query- The query to use to select the data for the map phase. Must not be null.inputCollectionName- the collection where the map-reduce will read from. Must not be null.mapFunction- The JavaScript map functionreduceFunction- The JavaScript reduce functionentityClass- The parametrized type of the returned list. Must not be null.- Returns:
- The results of the map reduce operation
-
mapReduce
@Deprecated <T> MapReduceResults<T> mapReduce(Query query, String inputCollectionName, String mapFunction, String reduceFunction, @Nullable MapReduceOptions mapReduceOptions, Class<T> entityClass) Deprecated.since 3.4 in favor ofaggregate(TypedAggregation, Class).Execute a map-reduce operation that takes a query and additional map-reduce options- Parameters:
query- The query to use to select the data for the map phase. Must not be null.inputCollectionName- the collection where the map-reduce will read from. Must not be null.mapFunction- The JavaScript map functionreduceFunction- The JavaScript reduce functionmapReduceOptions- Options that specify detailed map-reduce behaviorentityClass- The parametrized type of the returned list. Must not be null.- Returns:
- The results of the map reduce operation
-
geoNear
Deprecated.since 2.2. Theevalcommand has been removed in MongoDB Server 4.2.0. Use Aggregations withAggregation.geoNear(NearQuery, String)instead.ReturnsGeoResultsfor all entities matching the givenNearQuery. Will consider entity mapping information to determine the collection the query is ran against. Note, that MongoDB limits the number of results by default. Make sure to add an explicit limit to theNearQueryif you expect a particular number of results.MongoDB 4.2 has removed the
geoNearcommand. This method uses since version 2.2 aggregations and the$geoNearaggregation command to emulategeoNearcommand functionality. We recommend using aggregations directly:TypedAggregation<T> geoNear = TypedAggregation.newAggregation(entityClass, Aggregation.geoNear(near, "dis")) .withOptions(AggregationOptions.builder().collation(near.getCollation()).build()); AggregationResults<Document> results = aggregate(geoNear, Document.class);- Parameters:
near- must not be null.entityClass- must not be null.- Returns:
-
geoNear
Deprecated.since 2.2. Theevalcommand has been removed in MongoDB Server 4.2.0. Use Aggregations withAggregation.geoNear(NearQuery, String)instead.ReturnsGeoResultsfor all entities matching the givenNearQuery. Note, that MongoDB limits the number of results by default. Make sure to add an explicit limit to theNearQueryif you expect a particular number of results.MongoDB 4.2 has removed the
geoNearcommand. This method uses since version 2.2 aggregations and the$geoNearaggregation command to emulategeoNearcommand functionality. We recommend using aggregations directly:TypedAggregation<T> geoNear = TypedAggregation.newAggregation(entityClass, Aggregation.geoNear(near, "dis")) .withOptions(AggregationOptions.builder().collation(near.getCollation()).build()); AggregationResults<Document> results = aggregate(geoNear, Document.class);- Parameters:
near- must not be null.entityClass- must not be null.collectionName- the collection to trigger the query against. If no collection name is given the entity class will be inspected. Must not be null nor empty.- Returns:
-
findOne
Map the results of an ad-hoc query on the collection for the entity class to a single instance of an object of the specified type.
The object is converted from the MongoDB native representation using an instance of . Unless configured otherwise, an instance ofMappingMongoConverterwill be used.
The query is specified as aQuerywhich can be created either using theBasicQueryor the more feature richQuery.- Parameters:
query- the query class that specifies the criteria used to find a document and also an optional fields specification.entityClass- the parametrized type of the returned list.- Returns:
- the converted object.
-
findOne
Map the results of an ad-hoc query on the specified collection to a single instance of an object of the specified type.
The object is converted from the MongoDB native representation using an instance of . Unless configured otherwise, an instance ofMappingMongoConverterwill be used.
The query is specified as aQuerywhich can be created either using theBasicQueryor the more feature richQuery.- Parameters:
query- the query class that specifies the criteria used to find a document and also an optional fields specification.entityClass- the parametrized type of the returned list.collectionName- name of the collection to retrieve the objects from.- Returns:
- the converted object.
-
exists
Determine result of givenQuerycontains at least one element.
NOTE: Any additional support for query/field mapping, etc. is not available due to the lack of domain type information. Useexists(Query, Class, String)to get full type specific support.- Parameters:
query- theQueryclass that specifies the criteria used to find a document.collectionName- name of the collection to check for objects.- Returns:
- true if the query yields a result.
-
exists
Determine result of givenQuerycontains at least one element.- Parameters:
query- theQueryclass that specifies the criteria used to find a document.entityClass- the parametrized type.- Returns:
- true if the query yields a result.
-
exists
Determine result of givenQuerycontains at least one element.- Parameters:
query- theQueryclass that specifies the criteria used to find a document.entityClass- the parametrized type. Can be null.collectionName- name of the collection to check for objects.- Returns:
- true if the query yields a result.
-
find
Map the results of an ad-hoc query on the collection for the entity class to a List of the specified type.
The object is converted from the MongoDB native representation using an instance of . Unless configured otherwise, an instance ofMappingMongoConverterwill be used.
The query is specified as aQuerywhich can be created either using theBasicQueryor the more feature richQuery.- Parameters:
query- the query class that specifies the criteria used to find a document and also an optional fields specification. Must not be null.entityClass- the parametrized type of the returned list. Must not be null.- Returns:
- the List of converted objects.
-
find
Map the results of an ad-hoc query on the specified collection to a List of the specified type.
The object is converted from the MongoDB native representation using an instance of . Unless configured otherwise, an instance ofMappingMongoConverterwill be used.
The query is specified as aQuerywhich can be created either using theBasicQueryor the more feature richQuery.- Parameters:
query- the query class that specifies the criteria used to find a document and also an optional fields specification. Must not be null.entityClass- the parametrized type of the returned list. Must not be null.collectionName- name of the collection to retrieve the objects from. Must not be null.- Returns:
- the List of converted objects.
-
scroll
Query for a window of objects of type T from the specified collection.
Make sure to either setQuery.skip(long)orQuery.with(KeysetScrollPosition)along withQuery.limit(int)to limit large query results for efficient scrolling.
Result objects are converted from the MongoDB native representation using an instance of . Unless configured otherwise, an instance ofMappingMongoConverterwill be used.
If your collection does not contain a homogeneous collection of types, this operation will not be an efficient way to map objects since the test for class type is done in the client and not on the server.When using
KeysetScrollPosition, make sure to use non-nullablesort propertiesas MongoDB does not support criteria to reconstruct a query result from absent document fields ornullvalues through$gt/$ltoperators.- Parameters:
query- the query class that specifies the criteria used to find a document and also an optional fields specification. Must not be null.entityType- the parametrized type of the returned window.- Returns:
- the converted window.
- Throws:
IllegalStateException- if a potentialKeysetScrollPositioncontains an invalid position.- Since:
- 4.1
- See Also:
-
scroll
Query for a window of objects of type T from the specified collection.
Make sure to either setQuery.skip(long)orQuery.with(KeysetScrollPosition)along withQuery.limit(int)to limit large query results for efficient scrolling.
Result objects are converted from the MongoDB native representation using an instance of . Unless configured otherwise, an instance ofMappingMongoConverterwill be used.
If your collection does not contain a homogeneous collection of types, this operation will not be an efficient way to map objects since the test for class type is done in the client and not on the server.When using
KeysetScrollPosition, make sure to use non-nullablesort propertiesas MongoDB does not support criteria to reconstruct a query result from absent document fields ornullvalues through$gt/$ltoperators.- Parameters:
query- the query class that specifies the criteria used to find a document and also an optional fields specification. Must not be null.entityType- the parametrized type of the returned window.collectionName- name of the collection to retrieve the objects from.- Returns:
- the converted window.
- Throws:
IllegalStateException- if a potentialKeysetScrollPositioncontains an invalid position.- Since:
- 4.1
- See Also:
-
findById
Returns a document with the given id mapped onto the given class. The collection the query is ran against will be derived from the given target class as well.- Parameters:
id- the id of the document to return. Must not be null.entityClass- the type the document shall be converted into. Must not be null.- Returns:
- the document with the given id mapped onto the given target class.
-
findById
Returns the document with the given id from the given collection mapped onto the given target class.- Parameters:
id- the id of the document to return.entityClass- the type to convert the document to.collectionName- the collection to query for the document.- Returns:
- he converted object or null if document does not exist.
-
findDistinct
Finds the distinct values for a specified field across a singleMongoCollectionor view and returns the results in aList.- Parameters:
field- the name of the field to inspect for distinct values. Must not be null.entityClass- the domain type used for determining the actualMongoCollection. Must not be null.resultClass- the result type. Must not be null.- Returns:
- never null.
- Since:
- 2.1
-
findDistinct
Finds the distinct values for a specified field across a singleMongoCollectionor view and returns the results in aList.- Parameters:
query- filterQueryto restrict search. Must not be null.field- the name of the field to inspect for distinct values. Must not be null.entityClass- the domain type used for determining the actualMongoCollectionand mapping theQueryto the domain type fields. Must not be null.resultClass- the result type. Must not be null.- Returns:
- never null.
- Since:
- 2.1
-
findDistinct
<T> List<T> findDistinct(Query query, String field, String collectionName, Class<?> entityClass, Class<T> resultClass) Finds the distinct values for a specified field across a singleMongoCollectionor view and returns the results in aList.- Parameters:
query- filterQueryto restrict search. Must not be null.field- the name of the field to inspect for distinct values. Must not be null.collectionName- the explicit name of the actualMongoCollection. Must not be null.entityClass- the domain type used for mapping theQueryto the domain type fields.resultClass- the result type. Must not be null.- Returns:
- never null.
- Since:
- 2.1
-
findDistinct
default <T> List<T> findDistinct(Query query, String field, String collection, Class<T> resultClass) Finds the distinct values for a specified field across a singleMongoCollectionor view and returns the results in aList.- Parameters:
query- filterQueryto restrict search. Must not be null.field- the name of the field to inspect for distinct values. Must not be null.collection- the explicit name of the actualMongoCollection. Must not be null.resultClass- the result type. Must not be null.- Returns:
- never null.
- Since:
- 2.1
-
findAndModify
Triggers findAndModify to apply providedUpdateon documents matchingCriteriaof givenQuery.A potential
Versionproperty of the entityClass will be auto-incremented if not explicitly specified in the update.- Parameters:
query- theQueryclass that specifies theCriteriaused to find a document and also an optional fields specification. Must not be null.update- theUpdateDefinitionto apply on matching documents. Must not be null.entityClass- the parametrized type. Must not be null.- Returns:
- the converted object that was updated before it was updated or null, if not found.
- Since:
- 3.0
- See Also:
-
findAndModify
@Nullable <T> T findAndModify(Query query, UpdateDefinition update, Class<T> entityClass, String collectionName) Triggers findAndModify to apply providedUpdateon documents matchingCriteriaof givenQuery.A potential
Versionproperty of the entityClass will be auto-incremented if not explicitly specified in the update.- Parameters:
query- theQueryclass that specifies theCriteriaused to find a document and also an optional fields specification. Must not be null.update- theUpdateDefinitionto apply on matching documents. Must not be null.entityClass- the parametrized type. Must not be null.collectionName- the collection to query. Must not be null.- Returns:
- the converted object that was updated before it was updated or null, if not found.
- Since:
- 3.0
- See Also:
-
findAndModify
@Nullable <T> T findAndModify(Query query, UpdateDefinition update, FindAndModifyOptions options, Class<T> entityClass) Triggers findAndModify to apply providedUpdateon documents matchingCriteriaof givenQuerytakingFindAndModifyOptionsinto account.A potential
Versionproperty of the entityClass will be auto-incremented if not explicitly specified in the update.- Parameters:
query- theQueryclass that specifies theCriteriaused to find a document and also an optional fields specification.update- theUpdateDefinitionto apply on matching documents.options- theFindAndModifyOptionsholding additional information.entityClass- the parametrized type.- Returns:
- the converted object that was updated or null, if not found. Depending on the value of
FindAndModifyOptions.isReturnNew()this will either be the object as it was before the update or as it is after the update. - Since:
- 3.0
- See Also:
-
findAndModify
@Nullable <T> T findAndModify(Query query, UpdateDefinition update, FindAndModifyOptions options, Class<T> entityClass, String collectionName) Triggers findAndModify to apply providedUpdateon documents matchingCriteriaof givenQuerytakingFindAndModifyOptionsinto account.A potential
Versionproperty of the entityClass will be auto-incremented if not explicitly specified in the update.- Parameters:
query- theQueryclass that specifies theCriteriaused to find a document and also an optional fields specification. Must not be null.update- theUpdateDefinitionto apply on matching documents. Must not be null.options- theFindAndModifyOptionsholding additional information. Must not be null.entityClass- the parametrized type. Must not be null.collectionName- the collection to query. Must not be null.- Returns:
- the converted object that was updated or null, if not found. Depending on the value of
FindAndModifyOptions.isReturnNew()this will either be the object as it was before the update or as it is after the update. - Since:
- 3.0
- See Also:
-
findAndReplace
Triggers findOneAndReplace to replace a single document matchingCriteriaof givenQuerywith thereplacementdocument.
The collection name is derived from the replacement type.
Options are defaulted toFindAndReplaceOptions.empty().
NOTE: The replacement entity must not hold an id.- Parameters:
query- theQueryclass that specifies theCriteriaused to find a document and also an optional fields specification. Must not be null.replacement- the replacement document. Must not be null.- Returns:
- the converted object that was updated or null, if not found.
- Throws:
MappingException- if the collection name cannot bederivedfrom the given replacement value.- Since:
- 2.1
-
findAndReplace
Triggers findOneAndReplace to replace a single document matchingCriteriaof givenQuerywith thereplacementdocument.
Options are defaulted toFindAndReplaceOptions.empty().
NOTE: The replacement entity must not hold an id.- Parameters:
query- theQueryclass that specifies theCriteriaused to find a document and also an optional fields specification. Must not be null.replacement- the replacement document. Must not be null.collectionName- the collection to query. Must not be null.- Returns:
- the converted object that was updated or null, if not found.
- Since:
- 2.1
-
findAndReplace
Triggers findOneAndReplace to replace a single document matchingCriteriaof givenQuerywith thereplacementdocument takingFindAndReplaceOptionsinto account.
NOTE: The replacement entity must not hold an id.- Parameters:
query- theQueryclass that specifies theCriteriaused to find a document and also an optional fields specification. Must not be null.replacement- the replacement document. Must not be null.options- theFindAndModifyOptionsholding additional information. Must not be null.- Returns:
- the converted object that was updated or null, if not found. Depending on the value of
FindAndReplaceOptions.isReturnNew()this will either be the object as it was before the update or as it is after the update. - Throws:
MappingException- if the collection name cannot bederivedfrom the given replacement value.- Since:
- 2.1
-
findAndReplace
@Nullable default <T> T findAndReplace(Query query, T replacement, FindAndReplaceOptions options, String collectionName) Triggers findOneAndReplace to replace a single document matchingCriteriaof givenQuerywith thereplacementdocument takingFindAndReplaceOptionsinto account.
NOTE: The replacement entity must not hold an id.- Parameters:
query- theQueryclass that specifies theCriteriaused to find a document and also an optional fields specification. Must not be null.replacement- the replacement document. Must not be null.options- theFindAndModifyOptionsholding additional information. Must not be null.- Returns:
- the converted object that was updated or null, if not found. Depending on the value of
FindAndReplaceOptions.isReturnNew()this will either be the object as it was before the update or as it is after the update. - Since:
- 2.1
-
findAndReplace
@Nullable default <T> T findAndReplace(Query query, T replacement, FindAndReplaceOptions options, Class<T> entityType, String collectionName) Triggers findOneAndReplace to replace a single document matchingCriteriaof givenQuerywith thereplacementdocument takingFindAndReplaceOptionsinto account.
NOTE: The replacement entity must not hold an id.- Parameters:
query- theQueryclass that specifies theCriteriaused to find a document and also an optional fields specification. Must not be null.replacement- the replacement document. Must not be null.options- theFindAndModifyOptionsholding additional information. Must not be null.entityType- the parametrized type. Must not be null.collectionName- the collection to query. Must not be null.- Returns:
- the converted object that was updated or null, if not found. Depending on the value of
FindAndReplaceOptions.isReturnNew()this will either be the object as it was before the update or as it is after the update. - Since:
- 2.1
-
findAndReplace
@Nullable default <S,T> T findAndReplace(Query query, S replacement, FindAndReplaceOptions options, Class<S> entityType, Class<T> resultType) Triggers findOneAndReplace to replace a single document matchingCriteriaof givenQuerywith thereplacementdocument takingFindAndReplaceOptionsinto account.
NOTE: The replacement entity must not hold an id.- Parameters:
query- theQueryclass that specifies theCriteriaused to find a document and also an optional fields specification. Must not be null.replacement- the replacement document. Must not be null.options- theFindAndModifyOptionsholding additional information. Must not be null.entityType- the type used for mapping theQueryto domain type fields and deriving the collection from. Must not be null.resultType- the parametrized type projection return type. Must not be null, use the domain type ofObject.classinstead.- Returns:
- the converted object that was updated or null, if not found. Depending on the value of
FindAndReplaceOptions.isReturnNew()this will either be the object as it was before the update or as it is after the update. - Throws:
MappingException- if the collection name cannot bederivedfrom the given replacement value.- Since:
- 2.1
-
findAndReplace
@Nullable <S,T> T findAndReplace(Query query, S replacement, FindAndReplaceOptions options, Class<S> entityType, String collectionName, Class<T> resultType) Triggers findOneAndReplace to replace a single document matchingCriteriaof givenQuerywith thereplacementdocument takingFindAndReplaceOptionsinto account.
NOTE: The replacement entity must not hold an id.- Parameters:
query- theQueryclass that specifies theCriteriaused to find a document and also an optional fields specification. Must not be null.replacement- the replacement document. Must not be null.options- theFindAndModifyOptionsholding additional information. Must not be null.entityType- the type used for mapping theQueryto domain type fields. Must not be null.collectionName- the collection to query. Must not be null.resultType- the parametrized type projection return type. Must not be null, use the domain type ofObject.classinstead.- Returns:
- the converted object that was updated or null, if not found. Depending on the value of
FindAndReplaceOptions.isReturnNew()this will either be the object as it was before the update or as it is after the update. - Since:
- 2.1
-
findAndRemove
Map the results of an ad-hoc query on the collection for the entity type to a single instance of an object of the specified type. The first document that matches the query is returned and also removed from the collection in the database.
The object is converted from the MongoDB native representation using an instance of .
The query is specified as aQuerywhich can be created either using theBasicQueryor the more feature richQuery.- Parameters:
query- the query class that specifies the criteria used to find a document and also an optional fields specification.entityClass- the parametrized type of the returned list.- Returns:
- the converted object
-
findAndRemove
Map the results of an ad-hoc query on the specified collection to a single instance of an object of the specified type. The first document that matches the query is returned and also removed from the collection in the database.
The object is converted from the MongoDB native representation using an instance of . Unless configured otherwise, an instance ofMappingMongoConverterwill be used.
The query is specified as aQuerywhich can be created either using theBasicQueryor the more feature richQuery.- Parameters:
query- the query class that specifies the criteria used to find a document and also an optional fields specification.entityClass- the parametrized type of the returned list.collectionName- name of the collection to retrieve the objects from.- Returns:
- the converted object.
-
count
Returns the number of documents for the givenQueryby querying the collection of the given entity class.
NOTE: Queryoffsetandlimitcan have direct influence on the resulting number of documents found as those values are passed on to the server and potentially limit the range and order within which the server performs the count operation. Use an unpaged query to count all matches.
This method may choose to useestimatedCount(Class)for empty queries instead of running anaggregation executionwhich may have an impact on performance.- Parameters:
query- theQueryclass that specifies the criteria used to find documents. Must not be null.entityClass- class that determines the collection to use. Must not be null.- Returns:
- the count of matching documents.
- Throws:
MappingException- if the collection name cannot bederivedfrom the given type.- See Also:
-
count
Returns the number of documents for the givenQueryquerying the given collection. The givenQuerymust solely consist of document field references as we lack type information to map potential property references onto document fields. Usecount(Query, Class, String)to get full type specific support.
NOTE: Queryoffsetandlimitcan have direct influence on the resulting number of documents found as those values are passed on to the server and potentially limit the range and order within which the server performs the count operation. Use an unpaged query to count all matches.
This method may choose to useestimatedCount(Class)for empty queries instead of running anaggregation executionwhich may have an impact on performance.- Parameters:
query- theQueryclass that specifies the criteria used to find documents.collectionName- must not be null or empty.- Returns:
- the count of matching documents.
- See Also:
-
count
Returns the number of documents for the givenQueryby querying the given collection using the given entity class to map the givenQuery.
NOTE: Queryoffsetandlimitcan have direct influence on the resulting number of documents found as those values are passed on to the server and potentially limit the range and order within which the server performs the count operation. Use an unpaged query to count all matches.
This method may choose to useestimatedCount(Class)for empty queries instead of running anaggregation executionwhich may have an impact on performance.- Parameters:
query- theQueryclass that specifies the criteria used to find documents. Must not be null.entityClass- the parametrized type. Can be null.collectionName- must not be null or empty.- Returns:
- the count of matching documents.
- See Also:
-
estimatedCount
Estimate the number of documents, in the collectionidentified by the given type, based on collection statistics.
Please make sure to read the MongoDB reference documentation about limitations on eg. sharded cluster or inside transactions.- Parameters:
entityClass- must not be null.- Returns:
- the estimated number of documents.
- Throws:
MappingException- if the collection name cannot bederivedfrom the given type.- Since:
- 3.1
-
estimatedCount
Estimate the number of documents in the given collection based on collection statistics.
Please make sure to read the MongoDB reference documentation about limitations on eg. sharded cluster or inside transactions.- Parameters:
collectionName- must not be null.- Returns:
- the estimated number of documents.
- Since:
- 3.1
-
exactCount
Returns the number of documents for the givenQueryby querying the collection of the given entity class.
NOTE: Queryoffsetandlimitcan have direct influence on the resulting number of documents found as those values are passed on to the server and potentially limit the range and order within which the server performs the count operation. Use an unpaged query to count all matches.
This method uses anaggregation executioneven for emptyquerieswhich may have an impact on performance, but guarantees shard, session and transaction compliance. In case an inaccurate count satisfies the applications needs useestimatedCount(Class)for empty queries instead.- Parameters:
query- theQueryclass that specifies the criteria used to find documents. Must not be null.entityClass- class that determines the collection to use. Must not be null.- Returns:
- the count of matching documents.
- Throws:
MappingException- if the collection name cannot bederivedfrom the given type.- Since:
- 3.4
-
exactCount
Returns the number of documents for the givenQueryquerying the given collection. The givenQuerymust solely consist of document field references as we lack type information to map potential property references onto document fields. Usecount(Query, Class, String)to get full type specific support.
NOTE: Queryoffsetandlimitcan have direct influence on the resulting number of documents found as those values are passed on to the server and potentially limit the range and order within which the server performs the count operation. Use an unpaged query to count all matches.
This method uses anaggregation executioneven for emptyquerieswhich may have an impact on performance, but guarantees shard, session and transaction compliance. In case an inaccurate count satisfies the applications needs useestimatedCount(String)for empty queries instead.- Parameters:
query- theQueryclass that specifies the criteria used to find documents.collectionName- must not be null or empty.- Returns:
- the count of matching documents.
- Since:
- 3.4
- See Also:
-
exactCount
Returns the number of documents for the givenQueryby querying the given collection using the given entity class to map the givenQuery.
NOTE: Queryoffsetandlimitcan have direct influence on the resulting number of documents found as those values are passed on to the server and potentially limit the range and order within which the server performs the count operation. Use an unpaged query to count all matches.
This method uses anaggregation executioneven for emptyquerieswhich may have an impact on performance, but guarantees shard, session and transaction compliance. In case an inaccurate count satisfies the applications needs useestimatedCount(String)for empty queries instead.- Parameters:
query- theQueryclass that specifies the criteria used to find documents. Must not be null.entityClass- the parametrized type. Can be null.collectionName- must not be null or empty.- Returns:
- the count of matching documents.
- Since:
- 3.4
-
insert
<T> T insert(T objectToSave) Insert the object into the collection for the entity type of the object to save.
The object is converted to the MongoDB native representation using an instance of .
If your object has an Id property which holds a null value, it will be set with the generated Id from MongoDB. If your Id property is a String then MongoDB ObjectId will be used to populate that string. Otherwise, the conversion from ObjectId to your property type will be handled by Spring's BeanWrapper class that leverages Type Conversion API. See Spring's Type Conversion for more details.
Insert is used to initially store the object into the database. To update an existing object use thesave(Object)method.Inserting new objects will trigger
Versionproperty initialization.The
objectToSavemust not be collection-like.- Parameters:
objectToSave- the object to store in the collection. Must not be null.- Returns:
- the inserted object.
- Throws:
IllegalArgumentException- in case theobjectToSaveis collection-like.MappingException- if the target collection name cannot bederivedfrom the given object type.
-
insert
Insert the object into the specified collection.
The object is converted to the MongoDB native representation using an instance of . Unless configured otherwise, an instance ofMappingMongoConverterwill be used.
Insert is used to initially store the object into the database. To update an existing object use the save method.Inserting new objects will trigger
Versionproperty initialization.The
objectToSavemust not be collection-like.- Parameters:
objectToSave- the object to store in the collection. Must not be null.collectionName- name of the collection to store the object in. Must not be null.- Returns:
- the inserted object.
- Throws:
IllegalArgumentException- in case theobjectToSaveis collection-like.
-
insert
Insert a Collection of objects into a collection in a single batch write to the database.If an object within the batch has an Id property which holds a null value, it will be set with the generated Id from MongoDB.
Inserting new objects will trigger
Versionproperty initialization.- Parameters:
batchToSave- the batch of objects to save. Must not be null.entityClass- class that determines the collection to use. Must not be null.- Returns:
- the inserted objects that.
- Throws:
MappingException- if the target collection name cannot bederivedfrom the given type.
-
insert
Insert a batch of objects into the specified collection in a single batch write to the database.If an object within the batch has an Id property which holds a null value, it will be set with the generated Id from MongoDB.
Inserting new objects will trigger
Versionproperty initialization.- Parameters:
batchToSave- the list of objects to save. Must not be null.collectionName- name of the collection to store the object in. Must not be null.- Returns:
- the inserted objects that.
-
insertAll
Insert a mixed Collection of objects into a database collection determining the collection name to use based on the class.If an object within the batch has an Id property which holds a null value, it will be set with the generated Id from MongoDB.
Inserting new objects will trigger
Versionproperty initialization.- Parameters:
objectsToSave- the list of objects to save. Must not be null.- Returns:
- the inserted objects.
- Throws:
MappingException- if the target collection name cannot bederivedfor the given objects.
-
save
<T> T save(T objectToSave) Save the object to the collection for the entity type of the object to save. This will perform an insert if the object is not already present, that is an 'upsert'.
The object is converted to the MongoDB native representation using an instance of . Unless configured otherwise, an instance ofMappingMongoConverterwill be used.
If your object has an "Id' property, it will be set with the generated Id from MongoDB. If your Id property is a String then MongoDB ObjectId will be used to populate that string. Otherwise, the conversion from ObjectId to your property type will be handled by Spring's BeanWrapper class that leverages Type Conversion API. See Spring's Type Conversion for more details.A potential
Versionthe property will be auto incremented. The operation raises an error in case the document has been modified in between.The
objectToSavemust not be collection-like.- Parameters:
objectToSave- the object to store in the collection. Must not be null.- Returns:
- the saved object.
- Throws:
IllegalArgumentException- in case theobjectToSaveis collection-like.MappingException- if the target collection name cannot bederivedfrom the given object type.OptimisticLockingFailureException- in case of version mismatch in case aVersionis defined.
-
save
Save the object to the specified collection. This will perform an insert if the object is not already present, that is an 'upsert'.
The object is converted to the MongoDB native representation using an instance of . Unless configured otherwise, an instance ofMappingMongoConverterwill be used.
If your object has an "Id' property, it will be set with the generated Id from MongoDB. If your Id property is a String then MongoDB ObjectId will be used to populate that string. Otherwise, the conversion from ObjectId to your property type will be handled by Spring's BeanWrapper class that leverages Type Conversion API. See Spring's Type Conversion for more details.A potential
Versionthe property will be auto incremented. The operation raises an error in case the document has been modified in between.The
objectToSavemust not be collection-like.- Parameters:
objectToSave- the object to store in the collection. Must not be null.collectionName- name of the collection to store the object in. Must not be null.- Returns:
- the saved object.
- Throws:
IllegalArgumentException- in case theobjectToSaveis collection-like.OptimisticLockingFailureException- in case of version mismatch in case aVersionis defined.
-
upsert
com.mongodb.client.result.UpdateResult upsert(Query query, UpdateDefinition update, Class<?> entityClass) Performs an upsert. If no document is found that matches the query, a new document is created and inserted by combining the query document and the update document.A potential
Versionproperty of the entityClass will be auto-incremented if not explicitly specified in the update.NOTE:
sortingis not supported bydb.collection.updateOne. UsefindAndModify(Query, UpdateDefinition, FindAndModifyOptions, Class, String)instead.- Parameters:
query- the query document that specifies the criteria used to select a document to be upserted. Must not be null.update- theUpdateDefinitionthat contains the updated object or$operators to manipulate the existing object. Must not be null.entityClass- class that determines the collection to use. Must not be null.- Returns:
- the
UpdateResultwhich lets you access the results of the previous write. - Throws:
MappingException- if the target collection name cannot bederivedfrom the given type.- Since:
- 3.0
- See Also:
-
upsert
com.mongodb.client.result.UpdateResult upsert(Query query, UpdateDefinition update, String collectionName) Performs an upsert. If no document is found that matches the query, a new document is created and inserted by combining the query document and the update document.
NOTE: Any additional support for field mapping, versions, etc. is not available due to the lack of domain type information. Useupsert(Query, UpdateDefinition, Class, String)to get full type specific support.
NOTE:sortingis not supported bydb.collection.updateOne. UsefindAndModify(Query, UpdateDefinition, FindAndModifyOptions, Class, String)instead.- Parameters:
query- the query document that specifies the criteria used to select a document to be upserted. Must not be null.update- theUpdateDefinitionthat contains the updated object or$operators to manipulate the existing object. Must not be null.collectionName- name of the collection to update the object in.- Returns:
- the
UpdateResultwhich lets you access the results of the previous write. - Since:
- 3.0
- See Also:
-
upsert
com.mongodb.client.result.UpdateResult upsert(Query query, UpdateDefinition update, Class<?> entityClass, String collectionName) Performs an upsert. If no document is found that matches the query, a new document is created and inserted by combining the query document and the update document.A potential
Versionproperty of the entityClass will be auto-incremented if not explicitly specified in the update.- Parameters:
query- the query document that specifies the criteria used to select a document to be upserted. Must not be null.update- theUpdateDefinitionthat contains the updated object or$operators to manipulate the existing object. Must not be null.entityClass- class of the pojo to be operated on. Must not be null.collectionName- name of the collection to update the object in. Must not be null.- Returns:
- the
UpdateResultwhich lets you access the results of the previous write. - Since:
- 3.0
- See Also:
-
updateFirst
com.mongodb.client.result.UpdateResult updateFirst(Query query, UpdateDefinition update, Class<?> entityClass) Updates the first object that is found in the collection of the entity class that matches the query document with the provided update document.A potential
Versionproperty of the entityClass will be auto-incremented if not explicitly specified in the update.- Parameters:
query- the query document that specifies the criteria used to select a document to be updated. TheQuerymay define asort orderto influence which document to update when potentially matching multiple candidates. Must not be null.update- theUpdateDefinitionthat contains the updated object or$operators to manipulate the existing. Must not be null.entityClass- class that determines the collection to use.- Returns:
- the
UpdateResultwhich lets you access the results of the previous write. - Throws:
MappingException- if the target collection name cannot bederivedfrom the given type.- Since:
- 3.0
- See Also:
-
updateFirst
com.mongodb.client.result.UpdateResult updateFirst(Query query, UpdateDefinition update, String collectionName) Updates the first object that is found in the specified collection that matches the query document criteria with the provided updated document.
NOTE: Any additional support for field mapping, versions, etc. is not available due to the lack of domain type information. UseupdateFirst(Query, UpdateDefinition, Class, String)to get full type specific support.- Parameters:
query- the query document that specifies the criteria used to select a document to be updated. TheQuerymay define asort orderto influence which document to update when potentially matching multiple candidates. Must not be null.update- theUpdateDefinitionthat contains the updated object or$operators to manipulate the existing. Must not be null.collectionName- name of the collection to update the object in. Must not be null.- Returns:
- the
UpdateResultwhich lets you access the results of the previous write. - Since:
- 3.0
- See Also:
-
updateFirst
com.mongodb.client.result.UpdateResult updateFirst(Query query, UpdateDefinition update, Class<?> entityClass, String collectionName) Updates the first object that is found in the specified collection that matches the query document criteria with the provided updated document.A potential
Versionproperty of the entityClass will be auto incremented if not explicitly specified in the update.- Parameters:
query- the query document that specifies the criteria used to select a document to be updated. TheQuerymay define asort orderto influence which document to update when potentially matching multiple candidates. Must not be null.update- theUpdateDefinitionthat contains the updated object or$operators to manipulate the existing. Must not be null.entityClass- class of the pojo to be operated on. Must not be null.collectionName- name of the collection to update the object in. Must not be null.- Returns:
- the
UpdateResultwhich lets you access the results of the previous write. - Since:
- 3.0
- See Also:
-
updateMulti
com.mongodb.client.result.UpdateResult updateMulti(Query query, UpdateDefinition update, Class<?> entityClass) Updates all objects that are found in the collection for the entity class that matches the query document criteria with the provided updated document.A potential
Versionproperty of the entityClass will be auto incremented if not explicitly specified in the update.- Parameters:
query- the query document that specifies the criteria used to select a document to be updated. Must not be null.update- theUpdateDefinitionthat contains the updated object or$operators to manipulate the existing. Must not be null.entityClass- class of the pojo to be operated on. Must not be null.- Returns:
- the
UpdateResultwhich lets you access the results of the previous write. - Throws:
MappingException- if the target collection name cannot bederivedfrom the given type.- Since:
- 3.0
- See Also:
-
updateMulti
com.mongodb.client.result.UpdateResult updateMulti(Query query, UpdateDefinition update, String collectionName) Updates all objects that are found in the specified collection that matches the query document criteria with the provided updated document.
NOTE: Any additional support for field mapping, versions, etc. is not available due to the lack of domain type information. UseupdateMulti(Query, UpdateDefinition, Class, String)to get full type specific support.- Parameters:
query- the query document that specifies the criteria used to select a document to be updated. Must not be null.update- theUpdateDefinitionthat contains the updated object or$operators to manipulate the existing. Must not be null.collectionName- name of the collection to update the object in. Must not be null.- Returns:
- the
UpdateResultwhich lets you access the results of the previous write. - Since:
- 3.0
- See Also:
-
updateMulti
com.mongodb.client.result.UpdateResult updateMulti(Query query, UpdateDefinition update, Class<?> entityClass, String collectionName) Updates all objects that are found in the collection for the entity class that matches the query document criteria with the provided updated document.A potential
Versionproperty of the entityClass will be auto incremented if not explicitly specified in the update.- Parameters:
query- the query document that specifies the criteria used to select a document to be updated. Must not be null.update- theUpdateDefinitionthat contains the updated object or$operators to manipulate the existing. Must not be null.entityClass- class of the pojo to be operated on. Must not be null.collectionName- name of the collection to update the object in. Must not be null.- Returns:
- the
UpdateResultwhich lets you access the results of the previous write. - Since:
- 3.0
- See Also:
-
remove
Remove the given object from the collection by id and (if applicable) itsVersion.
UseDeleteResult.getDeletedCount()for insight whether anacknowledgedremove operation was successful or not.- Parameters:
object- must not be null.- Returns:
- the
DeleteResultwhich lets you access the results of the previous delete. - Throws:
MappingException- if the target collection name cannot bederivedfrom the given object type.
-
remove
Removes the given object from the given collection by id and (if applicable) itsVersion.
UseDeleteResult.getDeletedCount()for insight whether anacknowledgedremove operation was successful or not.- Parameters:
object- must not be null.collectionName- name of the collection where the documents will be removed from, must not be null or empty.- Returns:
- the
DeleteResultwhich lets you access the results of the previous delete.
-
remove
Remove all documents that match the provided query document criteria from the collection used to store the entityClass. The Class parameter is also used to help convert the Id of the object if it is present in the query.- Parameters:
query- the query document that specifies the criteria used to remove a document.entityClass- class that determines the collection to use.- Returns:
- the
DeleteResultwhich lets you access the results of the previous delete. - Throws:
IllegalArgumentException- when query or entityClass is null.MappingException- if the target collection name cannot bederivedfrom the given type.
-
remove
com.mongodb.client.result.DeleteResult remove(Query query, Class<?> entityClass, String collectionName) Remove all documents that match the provided query document criteria from the collection used to store the entityClass. The Class parameter is also used to help convert the Id of the object if it is present in the query.- Parameters:
query- the query document that specifies the criteria used to remove a document.entityClass- class of the pojo to be operated on. Can be null.collectionName- name of the collection where the documents will be removed from, must not be null or empty.- Returns:
- the
DeleteResultwhich lets you access the results of the previous delete. - Throws:
IllegalArgumentException- when query, entityClass or collectionName is null.
-
remove
Remove all documents from the specified collection that match the provided query document criteria. There is no conversion/mapping done for any criteria using the id field.
NOTE: Any additional support for field mapping is not available due to the lack of domain type information. Useremove(Query, Class, String)to get full type specific support.- Parameters:
query- the query document that specifies the criteria used to remove a document.collectionName- name of the collection where the documents will be removed from, must not be null or empty.- Returns:
- the
DeleteResultwhich lets you access the results of the previous delete. - Throws:
IllegalArgumentException- when query or collectionName is null.
-
findAllAndRemove
Returns and removes all documents form the specified collection that match the provided query.
NOTE: Any additional support for field mapping is not available due to the lack of domain type information. UsefindAllAndRemove(Query, Class, String)to get full type specific support.- Parameters:
query- the query document that specifies the criteria used to find and remove documents.collectionName- name of the collection where the documents will be removed from, must not be null or empty.- Returns:
- the
Listconverted objects deleted by this operation. - Since:
- 1.5
-
findAllAndRemove
Returns and removes all documents matching the given query form the collection used to store the entityClass.- Parameters:
query- the query document that specifies the criteria used to find and remove documents.entityClass- class of the pojo to be operated on.- Returns:
- the
Listconverted objects deleted by this operation. - Throws:
MappingException- if the target collection name cannot bederivedfrom the given type.- Since:
- 1.5
-
findAllAndRemove
Returns and removes all documents that match the provided query document criteria from the collection used to store the entityClass. The Class parameter is also used to help convert the Id of the object if it is present in the query.- Parameters:
query- the query document that specifies the criteria used to find and remove documents.entityClass- class of the pojo to be operated on.collectionName- name of the collection where the documents will be removed from, must not be null or empty.- Returns:
- the
Listconverted objects deleted by this operation. - Since:
- 1.5
-
replace
Replace a single document matching theCriteriaof givenQuerywith thereplacementdocument.
The collection name is derived from the replacement type.
Options are defaulted toReplaceOptions.none().- Parameters:
query- theQueryclass that specifies theCriteriaused to find a document. The query may contain an indexhintor thecollationto use. TheQuerymay define asort orderto influence which document to replace when potentially matching multiple candidates. Must not be null.replacement- the replacement document. Must not be null.- Returns:
- the
UpdateResultwhich lets you access the results of the previous replacement. - Throws:
MappingException- if the collection name cannot bederivedfrom the given replacement value.- Since:
- 4.2
-
replace
default <T> com.mongodb.client.result.UpdateResult replace(Query query, T replacement, String collectionName) Replace a single document matching theCriteriaof givenQuerywith thereplacementdocument. Options are defaulted toReplaceOptions.none().- Parameters:
query- theQueryclass that specifies theCriteriaused to find a document. The query may contain an indexhintor thecollationto use. TheQuerymay define asort orderto influence which document to replace when potentially matching multiple candidates. Must not be null.replacement- the replacement document. Must not be null.collectionName- the collection to query. Must not be null.- Returns:
- the
UpdateResultwhich lets you access the results of the previous replacement. - Since:
- 4.2
-
replace
default <T> com.mongodb.client.result.UpdateResult replace(Query query, T replacement, ReplaceOptions options) Replace a single document matching theCriteriaof givenQuerywith thereplacementdocument takingReplaceOptionsinto account.- Parameters:
query- theQueryclass that specifies theCriteriaused to find a document.The query may contain an indexhintor thecollationto use. TheQuerymay define asort orderto influence which document to replace when potentially matching multiple candidates. Must not be null.replacement- the replacement document. Must not be null.options- theReplaceOptionsholding additional information. Must not be null.- Returns:
- the
UpdateResultwhich lets you access the results of the previous replacement. - Throws:
MappingException- if the collection name cannot bederivedfrom the given replacement value.- Since:
- 4.2
-
replace
<T> com.mongodb.client.result.UpdateResult replace(Query query, T replacement, ReplaceOptions options, String collectionName) Replace a single document matching theCriteriaof givenQuerywith thereplacementdocument takingReplaceOptionsinto account.- Parameters:
query- theQueryclass that specifies theCriteriaused to find a document. The query may * contain an indexhintor thecollationto use. TheQuerymay define asort orderto influence which document to replace when potentially matching multiple candidates. Must not be null.replacement- the replacement document. Must not be null.options- theReplaceOptionsholding additional information. Must not be null.- Returns:
- the
UpdateResultwhich lets you access the results of the previous replacement. - Since:
- 4.2
-
getConverter
MongoConverter getConverter()Returns the underlyingMongoConverter.- Returns:
- never null.
-