springboot集成 mongodb以及mongodb简单工具类

前言

springboot集成 mongodb 有开箱即用的starter 因此集成还是很方便的

集成

  • 添加依赖
  <!--mongodb-->
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId>
</dependency>
  • 添加配置
spring.data.mongodb.host=localhost
spring.data.mongodb.port=27017
spring.data.mongodb.database=mydatabase

使用

直接注入

@Autowiredprivate MongoTemplate mongoTemplate;

封装的简单工具类

public interface MongoRepository {MongoOperations getMongoTemplate();/*** 获取集合** @param collectionName 集合* @return MongoCollection*/MongoCollection<Document> getCollection(String collectionName);MongoCollection<Document> getCollection(Query query, String collectionName);/*** 插入** @param collectionName collectionName* @param doc            doc*/void insert(String collectionName, Document doc);/*** 更新文档** @param collectionName collectionName* @param filter         filter* @param updateDoc      文档* @return long*/long update(String collectionName, Bson filter, Document updateDoc);/*** 统计** @param collectionName collectionName* @param filter         filter* @return long*/long count(String collectionName, Bson filter);/*** 统计** @param collectionName collectionName* @param filter         filter* @return long*/long countByLimit(String collectionName, Integer limit, Bson filter);/*** 去重** @param collectionName collectionName* @param filter         filter* @param fieldName      fieldName* @return long*/long distinctCount(String collectionName, Bson filter, String fieldName);/*** 根据指定的管道聚合文档** @param collectionName collectionName* @param pipeline       pipeline* @return AggregateIterable*/AggregateIterable<Document> aggregate(String collectionName, List<Bson> pipeline);/*** 查找** @param collectionName collectionName* @param filter         filter* @return FindIterable*/FindIterable<Document> find(String collectionName, Bson filter);/*** 获取实体类对应的集合名称** @param entityClass entityClass* @return String*/String getCollectionName(Class<?> entityClass);//新增api /*** Insert the object into the collection for the entity type of the object to save.* <br />* The object is converted to the MongoDB native representation using an instance of {@see MongoConverter}.* <br />* 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* <a href="https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation" > Spring's* Type Conversion"</a> for more details.* <br />* Insert is used to initially store the object into the database. To update an existing object use the save method.* <br />* The {@code objectToSave} must not be collection-like.** @param objectToSave the object to store in the collection. Must not be {@literal null}.* @return the inserted object.* @throws IllegalArgumentException                          in case the {@code objectToSave} is collection-like.* @throws org.springframework.data.mapping.MappingException if the target collection name cannot be*                                                           {@link org.springframework.data.mongodb.core.MongoOperations#getCollectionName(java.lang.Class)} from the given object type.*/<T> T insert(T objectToSave);/*** Insert the object into the specified collection.* <br />* The object is converted to the MongoDB native representation using an instance of {@see MongoConverter}. Unless* configured otherwise, an instance of {@link MappingMongoConverter} will be used.* <br />* Insert is used to initially store the object into the database. To update an existing object use the save method.* <br />* The {@code objectToSave} must not be collection-like.** @param objectToSave   the object to store in the collection. Must not be {@literal null}.* @param collectionName name of the collection to store the object in. Must not be {@literal null}.* @return the inserted object.* @throws IllegalArgumentException in case the {@code objectToSave} is collection-like.*/<T> T insert(T objectToSave, String collectionName);/*** Insert a Collection of objects into a collection in a single batch write to the database.** @param batchToSave the batch of objects to save. Must not be {@literal null}.* @param entityClass class that determines the collection to use. Must not be {@literal null}.* @return the inserted objects that.* @throws org.springframework.data.mapping.MappingException if the target collection name cannot be*                                                           {@link org.springframework.data.mongodb.core.MongoOperations#getCollectionName(java.lang.Class)} from the given type.*/<T> Collection<T> insert(Collection<? extends T> batchToSave, Class<?> entityClass);/*** Insert a batch of objects into the specified collection in a single batch write to the database.** @param batchToSave    the list of objects to save. Must not be {@literal null}.* @param collectionName name of the collection to store the object in. Must not be {@literal null}.* @return the inserted objects that.*/<T> Collection<T> insert(Collection<? extends T> batchToSave, String collectionName);/*** Insert a mixed Collection of objects into a database collection determining the collection name to use based on the* class.** @param objectsToSave the list of objects to save. Must not be {@literal null}.* @return the inserted objects.* @throws org.springframework.data.mapping.MappingException if the target collection name cannot be*                                                           {@link org.springframework.data.mongodb.core.MongoOperations#getCollectionName(java.lang.Class)} for the given objects.*/<T> Collection<T> insertAll(Collection<? extends T> objectsToSave);/*** 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'.* <br />* The object is converted to the MongoDB native representation using an instance of {@see MongoConverter}. Unless* configured otherwise, an instance of {@link MappingMongoConverter} will be used.* <br />* 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* <a href="https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation" > Spring's* Type Conversion"</a> for more details.* <br />* The {@code objectToSave} must not be collection-like.** @param objectToSave the object to store in the collection. Must not be {@literal null}.* @return the saved object.* @throws IllegalArgumentException                          in case the {@code objectToSave} is collection-like.* @throws org.springframework.data.mapping.MappingException if the target collection name cannot be*                                                           {@link org.springframework.data.mongodb.core.MongoOperations#getCollectionName(java.lang.Class)} from the given object type.*/<T> T save(T objectToSave);/*** Save the object to the specified collection. This will perform an insert if the object is not already present, that* is an 'upsert'.* <br />* The object is converted to the MongoDB native representation using an instance of {@see MongoConverter}. Unless* configured otherwise, an instance of {@link MappingMongoConverter} will be used.* <br />* 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 <a href="https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation">Spring's Type Conversion</a> for more details.* <br />* The {@code objectToSave} must not be collection-like.** @param objectToSave   the object to store in the collection. Must not be {@literal null}.* @param collectionName name of the collection to store the object in. Must not be {@literal null}.* @return the saved object.* @throws IllegalArgumentException in case the {@code objectToSave} is collection-like.*/<T> T save(T objectToSave, String collectionName);/*** 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.* <br />* The object is converted from the MongoDB native representation using an instance of {@see MongoConverter}. Unless* configured otherwise, an instance of {@link MappingMongoConverter} will be used.* <br />* The query is specified as a {@link Query} which can be created either using the {@link BasicQuery} or the more* feature rich {@link Query}.** @param query       the query class that specifies the criteria used to find a record and also an optional fields*                    specification.* @param entityClass the parametrized type of the returned list.* @return the converted object.*/@Nullable<T> T findOne(Query query, Class<T> entityClass);/*** Map the results of an ad-hoc query on the specified collection to a single instance of an object of the specified* type.* <br />* The object is converted from the MongoDB native representation using an instance of {@see MongoConverter}. Unless* configured otherwise, an instance of {@link MappingMongoConverter} will be used.* <br />* The query is specified as a {@link Query} which can be created either using the {@link BasicQuery} or the more* feature rich {@link Query}.** @param query          the query class that specifies the criteria used to find a record and also an optional fields*                       specification.* @param entityClass    the parametrized type of the returned list.* @param collectionName name of the collection to retrieve the objects from.* @return the converted object.*/@Nullable<T> T findOne(Query query, Class<T> entityClass, String collectionName);/*** Determine result of given {@link Query} contains at least one element. <br />* <strong>NOTE:</strong> Any additional support for query/field mapping, etc. is not available due to the lack of* domain type information. Use {@link #exists(Query, Class, String)} to get full type specific support.** @param query          the {@link Query} class that specifies the criteria used to find a record.* @param collectionName name of the collection to check for objects.* @return {@literal true} if the query yields a result.*/boolean exists(Query query, String collectionName);/*** Determine result of given {@link Query} contains at least one element.** @param query       the {@link Query} class that specifies the criteria used to find a record.* @param entityClass the parametrized type.* @return {@literal true} if the query yields a result.*/boolean exists(Query query, Class<?> entityClass);/*** Determine result of given {@link Query} contains at least one element.** @param query          the {@link Query} class that specifies the criteria used to find a record.* @param entityClass    the parametrized type. Can be {@literal null}.* @param collectionName name of the collection to check for objects.* @return {@literal true} if the query yields a result.*/boolean exists(Query query, @Nullable Class<?> entityClass, String collectionName);/*** Map the results of an ad-hoc query on the collection for the entity class to a List of the specified type.* <br />* The object is converted from the MongoDB native representation using an instance of {@see MongoConverter}. Unless* configured otherwise, an instance of {@link MappingMongoConverter} will be used.* <br />* The query is specified as a {@link Query} which can be created either using the {@link BasicQuery} or the more* feature rich {@link Query}.** @param query       the query class that specifies the criteria used to find a record and also an optional fields*                    specification. Must not be {@literal null}.* @param entityClass the parametrized type of the returned list. Must not be {@literal null}.* @return the List of converted objects.*/<T> List<T> find(Query query, Class<T> entityClass);/*** Map the results of an ad-hoc query on the specified collection to a List of the specified type.* <br />* The object is converted from the MongoDB native representation using an instance of {@see MongoConverter}. Unless* configured otherwise, an instance of {@link MappingMongoConverter} will be used.* <br />* The query is specified as a {@link Query} which can be created either using the {@link BasicQuery} or the more* feature rich {@link Query}.** @param query          the query class that specifies the criteria used to find a record and also an optional fields*                       specification. Must not be {@literal null}.* @param entityClass    the parametrized type of the returned list. Must not be {@literal null}.* @param collectionName name of the collection to retrieve the objects from. Must not be {@literal null}.* @return the List of converted objects.*/<T> List<T> find(Query query, Class<T> entityClass, String collectionName);/*** 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.** @param id          the id of the document to return. Must not be {@literal null}.* @param entityClass the type the document shall be converted into. Must not be {@literal null}.* @return the document with the given id mapped onto the given target class.*/@Nullable<T> T findById(Object id, Class<T> entityClass);/*** Returns the document with the given id from the given collection mapped onto the given target class.** @param id             the id of the document to return.* @param entityClass    the type to convert the document to.* @param collectionName the collection to query for the document.* @return he converted object or {@literal null} if document does not exist.*/@Nullable<T> T findById(Object id, Class<T> entityClass, String collectionName);/*** Finds the distinct values for a specified {@literal field} across a single {@link MongoCollection} or view and* returns the results in a {@link List}.** @param field       the name of the field to inspect for distinct values. Must not be {@literal null}.* @param entityClass the domain type used for determining the actual {@link MongoCollection}. Must not be*                    {@literal null}.* @param resultClass the result type. Must not be {@literal null}.* @return never {@literal null}.* @since 2.1*/default <T> List<T> findDistinct(String field, Class<?> entityClass, Class<T> resultClass) {return findDistinct(new Query(), field, entityClass, resultClass);}/*** Finds the distinct values for a specified {@literal field} across a single {@link MongoCollection} or view and* returns the results in a {@link List}.** @param query       filter {@link Query} to restrict search. Must not be {@literal null}.* @param field       the name of the field to inspect for distinct values. Must not be {@literal null}.* @param entityClass the domain type used for determining the actual {@link MongoCollection} and mapping the*                    {@link Query} to the domain type fields. Must not be {@literal null}.* @param resultClass the result type. Must not be {@literal null}.* @return never {@literal null}.* @since 2.1*/<T> List<T> findDistinct(Query query, String field, Class<?> entityClass, Class<T> resultClass);/*** Finds the distinct values for a specified {@literal field} across a single {@link MongoCollection} or view and* returns the results in a {@link List}.** @param query          filter {@link Query} to restrict search. Must not be {@literal null}.* @param field          the name of the field to inspect for distinct values. Must not be {@literal null}.* @param collectionName the explicit name of the actual {@link MongoCollection}. Must not be {@literal null}.* @param entityClass    the domain type used for mapping the {@link Query} to the domain type fields.* @param resultClass    the result type. Must not be {@literal null}.* @return never {@literal null}.* @since 2.1*/<T> List<T> findDistinct(Query query, String field, String collectionName, Class<?> entityClass,Class<T> resultClass);/*** Finds the distinct values for a specified {@literal field} across a single {@link MongoCollection} or view and* returns the results in a {@link List}.** @param query       filter {@link Query} to restrict search. Must not be {@literal null}.* @param field       the name of the field to inspect for distinct values. Must not be {@literal null}.* @param collection  the explicit name of the actual {@link MongoCollection}. Must not be {@literal null}.* @param resultClass the result type. Must not be {@literal null}.* @return never {@literal null}.* @since 2.1*/default <T> List<T> findDistinct(Query query, String field, String collection, Class<T> resultClass) {return findDistinct(query, field, collection, Object.class, resultClass);}/*** Returns the number of documents for the given {@link Query} by querying the collection of the given entity class.* <br />* <strong>NOTE:</strong> Query {@link Query#getSkip() offset} and {@link Query#getLimit() limit} can 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 {@literal unpaged} query to* count all matches.* <br />* This method uses an* {@link com.mongodb.client.MongoCollection#countDocuments(org.bson.conversions.Bson, com.mongodb.client.model.CountOptions)* aggregation execution} even for empty {@link Query queries} which may have an impact on performance, but guarantees* shard, session and transaction compliance. In case an inaccurate count satisfies the applications needs use* {@link MongoOperations#estimatedCount(Class)} for empty queries instead.** @param query       the {@link Query} class that specifies the criteria used to find documents. Must not be*                    {@literal null}.* @param entityClass class that determines the collection to use. Must not be {@literal null}.* @return the count of matching documents.* @throws org.springframework.data.mapping.MappingException if the collection name cannot be*                                                           {@link org.springframework.data.mongodb.core.MongoOperations#getCollectionName(java.lang.Class)} from the given type.*/long count(Query query, Class<?> entityClass);/*** Returns the number of documents for the given {@link Query} querying the given collection. The given {@link Query}* must solely consist of document field references as we lack type information to map potential property references* onto document fields. Use {@link MongoOperations#count(Query, Class, String)} to get full type specific support. <br />* <strong>NOTE:</strong> Query {@link Query#getSkip() offset} and {@link Query#getLimit() limit} can 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 {@literal unpaged} query to* count all matches.* <br />* This method uses an* {@link com.mongodb.client.MongoCollection#countDocuments(org.bson.conversions.Bson, com.mongodb.client.model.CountOptions)* aggregation execution} even for empty {@link Query queries} which may have an impact on performance, but guarantees* shard, session and transaction compliance. In case an inaccurate count satisfies the applications needs use* {@link MongoOperations#estimatedCount(String)} for empty queries instead.** @param query          the {@link Query} class that specifies the criteria used to find documents.* @param collectionName must not be {@literal null} or empty.* @return the count of matching documents.* @see MongoOperations#count(Query, Class, String)*/long count(Query query, 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. <br />* <strong>NOTE:</strong> {@link Query#getSortObject() sorting} is not supported by {@code db.collection.updateOne}.* Use {@link MongoOperations#findAndModify(Query, UpdateDefinition, FindAndModifyOptions, Class, String)} instead.** @param query       the query document that specifies the criteria used to select a record to be upserted. Must not be*                    {@literal null}.* @param update      the {@link UpdateDefinition} that contains the updated object or {@code $} operators to manipulate*                    the existing object. Must not be {@literal null}.* @param entityClass class that determines the collection to use. Must not be {@literal null}.* @return the {@link UpdateResult} which lets you access the results of the previous write.* @throws org.springframework.data.mapping.MappingException if the target collection name cannot be*                                                           {@link MongoOperations#getCollectionName(Class) derived} from the given type.* @see Update* @see AggregationUpdate* @since 3.0*/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. <br />* <strong>NOTE:</strong> Any additional support for field mapping, versions, etc. is not available due to the lack of* domain type information. Use {@link #upsert(Query, UpdateDefinition, Class, String)} to get full type specific* support. <br />* <strong>NOTE:</strong> {@link Query#getSortObject() sorting} is not supported by {@code db.collection.updateOne}.* Use {@link MongoOperations#findAndModify(Query, UpdateDefinition, FindAndModifyOptions, Class, String)} instead.** @param query          the query document that specifies the criteria used to select a record to be upserted. Must not be*                       {@literal null}.* @param update         the {@link UpdateDefinition} that contains the updated object or {@code $} operators to manipulate*                       the existing object. Must not be {@literal null}.* @param collectionName name of the collection to update the object in.* @return the {@link UpdateResult} which lets you access the results of the previous write.* @see Update* @see AggregationUpdate* @since 3.0*/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.** @param query          the query document that specifies the criteria used to select a record to be upserted. Must not be*                       {@literal null}.* @param update         the {@link UpdateDefinition} that contains the updated object or {@code $} operators to manipulate*                       the existing object. Must not be {@literal null}.* @param entityClass    class of the pojo to be operated on. Must not be {@literal null}.* @param collectionName name of the collection to update the object in. Must not be {@literal null}.* @return the {@link UpdateResult} which lets you access the results of the previous write.* @see Update* @see AggregationUpdate* @since 3.0*/UpdateResult upsert(Query query, UpdateDefinition update, Class<?> entityClass, String collectionName);/*** Updates the first object that is found in the collection of the entity class that matches the query document with* the provided update document.** @param query       the query document that specifies the criteria used to select a record to be updated. Must not be*                    {@literal null}.* @param update      the {@link UpdateDefinition} that contains the updated object or {@code $} operators to manipulate*                    the existing. Must not be {@literal null}.* @param entityClass class that determines the collection to use.* @return the {@link UpdateResult} which lets you access the results of the previous write.* @throws org.springframework.data.mapping.MappingException if the target collection name cannot be*                                                           {@link MongoOperations#getCollectionName(Class) derived} from the given type.* @see Update* @see AggregationUpdate* @since 3.0*/UpdateResult updateFirst(Query query, UpdateDefinition update, Class<?> entityClass);/*** Updates the first object that is found in the specified collection that matches the query document criteria with* the provided updated document. <br />* <strong>NOTE:</strong> Any additional support for field mapping, versions, etc. is not available due to the lack of* domain type information. Use {@link #updateFirst(Query, UpdateDefinition, Class, String)} to get full type specific* support. <br />* <strong>NOTE:</strong> {@link Query#getSortObject() sorting} is not supported by {@code db.collection.updateOne}.* Use {@link MongoOperations#findAndModify(Query, UpdateDefinition, Class, String)} instead.** @param query          the query document that specifies the criteria used to select a record to be updated. Must not be*                       {@literal null}.* @param update         the {@link UpdateDefinition} that contains the updated object or {@code $} operators to manipulate*                       the existing. Must not be {@literal null}.* @param collectionName name of the collection to update the object in. Must not be {@literal null}.* @return the {@link UpdateResult} which lets you access the results of the previous write.* @see Update* @see AggregationUpdate* @since 3.0*/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. <br />** @param query          the query document that specifies the criteria used to select a record to be updated. Must not be*                       {@literal null}.* @param update         the {@link UpdateDefinition} that contains the updated object or {@code $} operators to manipulate*                       the existing. Must not be {@literal null}.* @param entityClass    class of the pojo to be operated on. Must not be {@literal null}.* @param collectionName name of the collection to update the object in. Must not be {@literal null}.* @return the {@link UpdateResult} which lets you access the results of the previous write.* @see Update* @see AggregationUpdate* @since 3.0*/UpdateResult updateFirst(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.** @param query       the query document that specifies the criteria used to select a record to be updated. Must not be*                    {@literal null}.* @param update      the {@link UpdateDefinition} that contains the updated object or {@code $} operators to manipulate*                    the existing. Must not be {@literal null}.* @param entityClass class of the pojo to be operated on. Must not be {@literal null}.* @return the {@link UpdateResult} which lets you access the results of the previous write.* @throws org.springframework.data.mapping.MappingException if the target collection name cannot be*                                                           {@link MongoOperations#getCollectionName(Class) derived} from the given type.* @see Update* @see AggregationUpdate* @since 3.0*/UpdateResult updateMulti(Query query, UpdateDefinition update, Class<?> entityClass);/*** Updates all objects that are found in the specified collection that matches the query document criteria with the* provided updated document. <br />* <strong>NOTE:</strong> Any additional support for field mapping, versions, etc. is not available due to the lack of* domain type information. Use {@link #updateMulti(Query, UpdateDefinition, Class, String)} to get full type specific* support.** @param query          the query document that specifies the criteria used to select a record to be updated. Must not be*                       {@literal null}.* @param update         the {@link UpdateDefinition} that contains the updated object or {@code $} operators to manipulate*                       the existing. Must not be {@literal null}.* @param collectionName name of the collection to update the object in. Must not be {@literal null}.* @return the {@link UpdateResult} which lets you access the results of the previous write.* @see Update* @see AggregationUpdate* @since 3.0*/UpdateResult updateMulti(Query query, UpdateDefinition update, 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.** @param query          the query document that specifies the criteria used to select a record to be updated. Must not be*                       {@literal null}.* @param update         the {@link UpdateDefinition} that contains the updated object or {@code $} operators to manipulate*                       the existing. Must not be {@literal null}.* @param entityClass    class of the pojo to be operated on. Must not be {@literal null}.* @param collectionName name of the collection to update the object in. Must not be {@literal null}.* @return the {@link UpdateResult} which lets you access the results of the previous write.* @see Update* @see AggregationUpdate* @since 3.0*/UpdateResult updateMulti(Query query, UpdateDefinition update, Class<?> entityClass, String collectionName);/*** Remove the given object from the collection by {@literal id} and (if applicable) its* {@link org.springframework.data.annotation.Version}. <br />* Use {@link DeleteResult#getDeletedCount()} for insight whether an {@link DeleteResult#wasAcknowledged()* acknowledged} remove operation was successful or not.** @param object must not be {@literal null}.* @return the {@link DeleteResult} which lets you access the results of the previous delete.* @throws org.springframework.data.mapping.MappingException if the target collection name cannot be*                                                           {@link MongoOperations#getCollectionName(Class) derived} from the given object type.*/DeleteResult remove(Object object);/*** Removes the given object from the given collection by {@literal id} and (if applicable) its* {@link org.springframework.data.annotation.Version}. <br />* Use {@link DeleteResult#getDeletedCount()} for insight whether an {@link DeleteResult#wasAcknowledged()* acknowledged} remove operation was successful or not.** @param object         must not be {@literal null}.* @param collectionName name of the collection where the objects will removed, must not be {@literal null} or empty.* @return the {@link DeleteResult} which lets you access the results of the previous delete.*/DeleteResult remove(Object object, String collectionName);/*** Remove all documents that match the provided query document criteria from the 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.** @param query       the query document that specifies the criteria used to remove a record.* @param entityClass class that determines the collection to use.* @return the {@link DeleteResult} which lets you access the results of the previous delete.* @throws IllegalArgumentException                          when {@literal query} or {@literal entityClass} is {@literal null}.* @throws org.springframework.data.mapping.MappingException if the target collection name cannot be*                                                           {@link MongoOperations#getCollectionName(Class) derived} from the given type.*/DeleteResult remove(Query query, Class<?> entityClass);/*** Remove all documents that match the provided query document criteria from the 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.** @param query          the query document that specifies the criteria used to remove a record.* @param entityClass    class of the pojo to be operated on. Can be {@literal null}.* @param collectionName name of the collection where the objects will removed, must not be {@literal null} or empty.* @return the {@link DeleteResult} which lets you access the results of the previous delete.* @throws IllegalArgumentException when {@literal query}, {@literal entityClass} or {@literal collectionName} is*                                  {@literal null}.*/DeleteResult remove(Query query, Class<?> entityClass, String collectionName);/*** 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. <br />* <strong>NOTE:</strong> Any additional support for field mapping is not available due to the lack of domain type* information. Use {@link #remove(Query, Class, String)} to get full type specific support.** @param query          the query document that specifies the criteria used to remove a record.* @param collectionName name of the collection where the objects will removed, must not be {@literal null} or empty.* @return the {@link DeleteResult} which lets you access the results of the previous delete.* @throws IllegalArgumentException when {@literal query} or {@literal collectionName} is {@literal null}.*/DeleteResult remove(Query query, String collectionName);}

实现类

@Repository
public class MongoRepositoryImpl implements MongoRepository {@Autowiredprivate MongoTemplate mongoTemplate;@Overridepublic MongoOperations getMongoTemplate() {return mongoTemplate;}@Overridepublic MongoCollection<Document> getCollection(String collectionName) {return mongoTemplate.getCollection(collectionName);}@Overridepublic MongoCollection<Document> getCollection(Query query, String collectionName) {mongoTemplate.count(query, collectionName);return mongoTemplate.getCollection(collectionName);}@Overridepublic void insert(String collectionName, Document doc) {MongoCollection<Document> collection = getCollection(collectionName);collection.insertOne(doc);}@Overridepublic long count(String collectionName, Bson filter) {MongoCollection<Document> collection = getCollection(collectionName);return collection.countDocuments(filter);}@Overridepublic long countByLimit(String collectionName, Integer limit, Bson filter) {MongoCollection<Document> collection = getCollection(collectionName);CountOptions countOptions = new CountOptions();countOptions.limit(limit);return collection.countDocuments(filter, countOptions);}@Overridepublic long distinctCount(String collectionName, Bson filter, String fieldName) {MongoCollection<Document> collection = getCollection(collectionName);long count = 0;if (StringUtils.isEmpty(fieldName)) {return 0L;}for (BsonValue ignored : collection.distinct(fieldName, filter, BsonValue.class)) {count++;}return count;}@Overridepublic AggregateIterable<Document> aggregate(String collectionName, List<Bson> pipeline) {MongoCollection<Document> collection = getCollection(collectionName);return collection.aggregate(pipeline);}@Overridepublic FindIterable<Document> find(String collectionName, Bson filter) {MongoCollection<Document> collection = getCollection(collectionName);return collection.find(filter);}@Overridepublic long update(String collectionName, Bson filter, Document updateDoc) {MongoCollection<Document> collection = getCollection(collectionName);return collection.updateOne(filter, updateDoc).getModifiedCount();}@Overridepublic String getCollectionName(Class<?> entityClass) {return mongoTemplate.getCollectionName(entityClass);}@Overridepublic <T> T insert(T objectToSave) {return mongoTemplate.insert(objectToSave);}@Overridepublic <T> T insert(T objectToSave, String collectionName) {return mongoTemplate.insert(objectToSave, collectionName);}@Overridepublic <T> Collection<T> insert(Collection<? extends T> batchToSave, Class<?> entityClass) {return mongoTemplate.insert(batchToSave, entityClass);}@Overridepublic <T> Collection<T> insert(Collection<? extends T> batchToSave, String collectionName) {return mongoTemplate.insert(batchToSave, collectionName);}@Overridepublic <T> Collection<T> insertAll(Collection<? extends T> objectsToSave) {return mongoTemplate.insertAll(objectsToSave);}@Overridepublic <T> T save(T objectToSave) {return mongoTemplate.save(objectToSave);}@Overridepublic <T> T save(T objectToSave, String collectionName) {return mongoTemplate.save(objectToSave, collectionName);}@Overridepublic <T> T findOne(Query query, Class<T> entityClass) {return mongoTemplate.findOne(query, entityClass);}@Overridepublic <T> T findOne(Query query, Class<T> entityClass, String collectionName) {return mongoTemplate.findOne(query, entityClass, collectionName);}@Overridepublic boolean exists(Query query, String collectionName) {return mongoTemplate.exists(query, collectionName);}@Overridepublic boolean exists(Query query, Class<?> entityClass) {return mongoTemplate.exists(query, entityClass);}@Overridepublic boolean exists(Query query, Class<?> entityClass, String collectionName) {return mongoTemplate.exists(query, entityClass);}@Overridepublic <T> List<T> find(Query query, Class<T> entityClass) {return mongoTemplate.find(query, entityClass);}@Overridepublic <T> List<T> find(Query query, Class<T> entityClass, String collectionName) {return mongoTemplate.find(query, entityClass, collectionName);}@Overridepublic <T> T findById(Object id, Class<T> entityClass) {return mongoTemplate.findById(id, entityClass);}@Overridepublic <T> T findById(Object id, Class<T> entityClass, String collectionName) {return mongoTemplate.findById(id, entityClass, collectionName);}@Overridepublic <T> List<T> findDistinct(String field, Class<?> entityClass, Class<T> resultClass) {return mongoTemplate.findDistinct(field, entityClass, resultClass);}@Overridepublic <T> List<T> findDistinct(Query query, String field, Class<?> entityClass, Class<T> resultClass) {return mongoTemplate.findDistinct(query, field, entityClass, resultClass);}@Overridepublic <T> List<T> findDistinct(Query query, String field, String collectionName, Class<?> entityClass, Class<T> resultClass) {return mongoTemplate.findDistinct(query, field, collectionName, entityClass, resultClass);}@Overridepublic <T> List<T> findDistinct(Query query, String field, String collection, Class<T> resultClass) {return mongoTemplate.findDistinct(query, field, collection, resultClass);}@Overridepublic long count(Query query, Class<?> entityClass) {return mongoTemplate.count(query, entityClass);}@Overridepublic long count(Query query, String collectionName) {return mongoTemplate.count(query, collectionName);}@Overridepublic UpdateResult upsert(Query query, UpdateDefinition update, Class<?> entityClass) {return mongoTemplate.upsert(query, update, entityClass);}@Overridepublic UpdateResult upsert(Query query, UpdateDefinition update, String collectionName) {return mongoTemplate.upsert(query, update, collectionName);}@Overridepublic UpdateResult upsert(Query query, UpdateDefinition update, Class<?> entityClass, String collectionName) {return mongoTemplate.upsert(query, update, entityClass, collectionName);}@Overridepublic UpdateResult updateFirst(Query query, UpdateDefinition update, Class<?> entityClass) {return mongoTemplate.updateFirst(query, update, entityClass);}@Overridepublic UpdateResult updateFirst(Query query, UpdateDefinition update, String collectionName) {return mongoTemplate.updateFirst(query, update, collectionName);}@Overridepublic UpdateResult updateFirst(Query query, UpdateDefinition update, Class<?> entityClass, String collectionName) {return mongoTemplate.updateFirst(query, update, entityClass, collectionName);}@Overridepublic UpdateResult updateMulti(Query query, UpdateDefinition update, Class<?> entityClass) {return mongoTemplate.updateMulti(query, update, entityClass);}@Overridepublic UpdateResult updateMulti(Query query, UpdateDefinition update, String collectionName) {return mongoTemplate.updateMulti(query, update, collectionName);}@Overridepublic UpdateResult updateMulti(Query query, UpdateDefinition update, Class<?> entityClass, String collectionName) {return mongoTemplate.updateMulti(query, update, entityClass, collectionName);}@Overridepublic DeleteResult remove(Object object) {return mongoTemplate.remove(object);}@Overridepublic DeleteResult remove(Object object, String collectionName) {return mongoTemplate.remove(object, collectionName);}@Overridepublic DeleteResult remove(Query query, Class<?> entityClass) {return mongoTemplate.remove(query, entityClass);}@Overridepublic DeleteResult remove(Query query, Class<?> entityClass, String collectionName) {return mongoTemplate.remove(query, entityClass, collectionName);}@Overridepublic DeleteResult remove(Query query, String collectionName) {return mongoTemplate.remove(query, collectionName);}
}

后续直接使用仓库类即可
测试类

@Slf4j
@RunWith(SpringRunner.class)
@SpringBootTest(classes = App.class)
public class ProcessTest {@Autowiredprivate MongoRepository mongoRepository;@Testpublic void test() {String collectionName = mongoGateway.getCollectionName(User.class);System.out.println(collectionName);User user = new User();user.setId(1L);user.setUser_id(1111L);user.setAge(10);User user1 = mongoRepository.save(user, "user");System.out.println("新增user: " + JSON.toJSONString(user1));Query query = new Query();Criteria criteria = new Criteria(TableInfoEnum.USER.getUniqueFieldName());criteria.is(user.getUser_id());query.addCriteria(criteria);user.setAge(18);Update update = new Update();setUpdate(update, user);mongoRepository.updateMulti(query, update, User.class, "user");User one = mongoRepository.findOne(query, User.class, "user");System.out.println("one: " + JSON.toJSONString(one));}public void setUpdate(Update update, Object object) {if (null == object) {return;}Class<?> clazz = object.getClass();BeanInfo beanInfo;try {beanInfo = Introspector.getBeanInfo(clazz);PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors();for (PropertyDescriptor propertyDescriptor : propertyDescriptors) {String name = propertyDescriptor.getName();if (!"class".equalsIgnoreCase(name)) {Method readMethod = propertyDescriptor.getReadMethod();readMethod.setAccessible(true);Object invoke = readMethod.invoke(object, null);if (null != invoke) {update.set(name, invoke);System.out.println("name: " + name + " invoke: " + invoke);}}}} catch (IntrospectionException | InvocationTargetException | IllegalAccessException e) {log.error("setUpdate属性失败,错误日志: {[]}", e);}}
}

官方文档参考: https://docs.spring.io/spring-data/mongodb/reference/mongodb.html

the end !!!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/736338.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【APP逆向】酒仙网预约茅台程序,包含逆向过程详解

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 所属的专栏:爬虫实战,零基础、进阶教学 景天的主页:景天科技苑 文章目录 酒仙网预约抢购茅台1.抓包分析,账户名和密码登录2.短信登录3.登录+茅台预约 密码登录酒仙网预约抢购茅台 目标:账号登…

退磁曲线方形度Q与膝点Hk

大家都知道衡量钕铁铁磁体性能的指标包括剩磁Br、矫顽力HcB、内禀矫顽力HcJ和最大磁能积(BH)max&#xff0c;除此之外&#xff0c;内禀曲线方向度和Hk也是磁应用工程师非常关注的两个指标&#xff0c;今天就来了解一下这两个指标的含义及影响因素。 首先我们先来回顾一下什么是…

数据库备份脚本嘎嘎香,被秀到了!

1.Oracle RMAN备份 1.1 创建目录 [oracleOEL7 ~]$ mkdir -p /u01/dbbak/script [oracleOEL7 ~]$ cd /u01/dbbak [oracleOEL7 ~]$ chown -R oracle:oinstall script[oracleOEL7 ~]$ mkdir -p /u01/dbbak/db [oracleOEL7 ~]$ mkdir -p /u01/dbbak/arch [oracleOEL7 ~]$ cd /u01…

In-Memory Key-Value Store Live Migration with NetMigrate——泛读笔记

FAST 2024 Paper 论文阅读笔记整理 问题 分布式键值存储需要在节点之间频繁迁移键值碎片&#xff0c;以对动态工作负载变化做出反应&#xff0c;从而实现负载平衡、数据局部性和服务弹性。 现有方法局限性 现有的实时迁移技术必须假设一个或多个位置作为主查询服务点&#…

某图网查看大图接口结果加密逆向之数据解密扣取

逆向网址 aHR0cHM6Ly95ZXNtenQuY29tLw 逆向链接 aHR0cHM6Ly95ZXNtenQuY29tL2JlYXV0eS8 逆向接口 aHR0cHM6Ly95ZXNtenQuY29tL2FwcC9wb3N0L3A/aWQ9MTA3NjQy 那么我们可以看到接口请求结果为加密数据&#xff0c; 需要手动解开才可以拿到数据 展示图片大图 逆向过程 请求方式&…

管易云对接打通金蝶K3-WISE调整单查询接口与新增其他出库接口

管易云对接打通金蝶K3-WISE调整单查询接口与新增其他出库接口 来源系统:管易云 管易云是上海管易云计算软件有限公司旗下的专注提供电商企业管理软件服务的品牌&#xff0c;总部位于中国上海张江高科技产业园区。管易云旗下拥有管易云C-ERP、EC-OMS、EC-WMS、B2C/B2B/BBC/微商城…

专题二 - 滑动窗口 - leetcode 3. 无重复字符的最长子串 | 中等难度

leetcode 3. 无重复字符的最长子串 leetcode 3. 无重复字符的最长子串 | 中等难度1. 题目详情1. 原题链接2. 基础框架 2. 解题思路1. 题目分析2. 算法原理3. 时间复杂度 3. 代码实现4. 知识与收获 leetcode 3. 无重复字符的最长子串 | 中等难度 1. 题目详情 给定一个字符串 s…

【Java】深入解析Java中的多态性:理解方法的重写和重载

在Java编程中&#xff0c;多态性是一种重要的概念&#xff0c;它允许我们以一种通用的方式处理不同类型的对象&#xff0c;从而增强了代码的灵活性、可扩展性和可维护性。多态性的实现主要通过方法的重写和重载&#xff0c;在本文中我们将深入探讨这两种机制的原理、使用方法以…

运营商关注焦点访谈:如何将裸光纤资源价值最大化?

引言 当遇见裸光纤租赁业务&#xff0c;运营商如何合理规划、分配纤芯资源&#xff1f;相信这是每个运营商伙伴都遇见过的问题。我们经过多用户调研访谈&#xff0c;发现规划与分配并不难&#xff0c;真正的难点在于将这些哑资源、暗资源“合理规划与分配”&#xff0c;合理才…

公众号如何获取视频号下载工具?

视频内容已经成为信息传播的重要载体&#xff0c;微信视频号作为国内主流的短视频平台之一&#xff0c;深受用户喜爱。有时我们想要保存喜欢的视频以供日后观看&#xff0c;这时就需要借助一些公众号提供的视频号下载工具。 本文将详细解析如何利用这些工具&#xff0c;让你轻…

【C++从练气到飞升】02---初识类与对象

&#x1f388;个人主页&#xff1a;库库的里昂 ✨收录专栏&#xff1a;C从练气到飞升 &#x1f389;鸟欲高飞先振翅&#xff0c;人求上进先读书。 目录 ⛳️推荐 一、面向过程和面向对象初步认识 二、类的引用 1. C语言版 2. C版 三、类的定义 类的两种定义方式&#xff…

P8680 [蓝桥杯 2019 省 B] 特别数的和:做题笔记

目录 思路 代码 题目链接&#xff1a; P8680 [蓝桥杯 2019 省 B] 特别数的和 思路 最开始我思路主要是从数字转字符串上想的。因为我们需要判断每一位是否是特殊数&#xff0c;字符串很容易做到这一点&#xff0c;只是在数字相加这一步不好实现。 需要用到字符串与数字的…

【Python从入门到进阶】50、当当网Scrapy项目实战(三)

接上篇《49、当当网Scrapy项目实战&#xff08;二&#xff09;》 上一篇我们讲解了的Spider与item之间的关系&#xff0c;以及如何使用item&#xff0c;以及使用pipelines管道进行数据下载的操作&#xff0c;本篇我们来讲解Scrapy的多页面下载如何实现。 一、多页面下载原理分…

【竞技宝】LOL:TES连下两局轻松击败OMG

【竞技宝】LOL&#xff1a;TES连下两局轻松击败OMG 北京时间2024年3月9日&#xff0c;英雄联盟LPL2024春季常规赛继续进行&#xff0c;昨日共进行三场比赛&#xff0c;第三场比赛由TES对阵OMG。本场比赛&#xff0c;TES的打野选手tian个人表现出色&#xff0c;两局比赛都多次成…

pyqt线程正确使用

PyQt之科学使用线程处理耗时任务以及线程通信方法 上面这篇文章看似很科学… 经过实际测试&#xff0c;需要按下面创建线程&#xff1a; self.work EmailWork() self.thread QtCore.QThread() self.thread.start()self.work.moveToThread(self.thread) self.work.complete_…

案例分析01-题型分析与历年案例题真题考点汇总(2024年软考高级系统架构设计师冲刺知识点总结)

1、历年真题案例分析题考点汇总 1.1 2018年~2023年 1.2 2012年~2017年 2、考试安排 案例分析题的考试安排在下午,时间为1.5小时,相对来说比较轻松。 上午:09:00-11:30,150分钟,2.5小时 综合知识题,全选择题,单选题 75个空,75分,45分合格 下午:13:30-15:00,90分钟,…

小邦教你4步解决下属把你投诉快速的转祸为福

​​在日常的工作中&#xff0c;无论你做得有多么优秀&#xff0c;有多么的完美&#xff0c;有多么的完善&#xff0c;难免还有漏洞之处。甚至说你的一个不经意&#xff0c;你的一个不小心&#xff0c;导致了比较坏的结果。正当你绞尽脑汁、头痛的时刻&#xff0c;却被有心的员…

ODP(Open Data Plane)

1. 摘要 本文档旨在指导新的ODP应用程序开发人员。 有关ODP的更多详细信息&#xff0c;请参见 ODP 主页。 Overview of a system running ODP applications ODP是一份API规范&#xff0c;为高性能网络应用程序的实现提供平台独立性、自动硬件加速和CPU扩展。 本文档介绍如何充…

数据结构 - 堆

这篇博客将介绍堆的概念以及堆的实现。 1. 堆的定义&#xff1a; 首先堆的元素按照是完全二叉树的顺序存储的。 且堆中的某个节点总是不大于或不小于其父节点的值。 根节点最大的堆叫做大堆&#xff0c;根节点最小的堆叫小堆。逻辑结构如下图所示&#xff1a; 大堆和小堆的…

学校Java的第七天

目录 一、什么是数组 二、作用 三、如何使用数组 1、声明数组变量 2、创建数组 示例&#xff1a; 3、数组的使用 示例&#xff1a; 4、数组的遍历 for循环示例&#xff08;不知道for循环的可以查看我之前发的文章&#xff09; for-each循环&#xff08;也就是增强for…