Uses of Interface
org.springframework.data.mongodb.core.convert.MongoWriter
Packages that use MongoWriter
Package
Description
MongoDB core support.
Spring Data MongoDB specific converter infrastructure.
Query derivation mechanism for MongoDB specific repositories.
-
Uses of MongoWriter in org.springframework.data.mongodb.core
Methods in org.springframework.data.mongodb.core with parameters of type MongoWriterModifier and TypeMethodDescriptionprotected <T> TMongoTemplate.doInsert(String collectionName, T objectToSave, MongoWriter<T> writer) protected <T> reactor.core.publisher.Mono<T>ReactiveMongoTemplate.doInsert(String collectionName, T objectToSave, MongoWriter<Object> writer) protected <T> Collection<T>MongoTemplate.doInsertAll(Collection<? extends T> listToSave, MongoWriter<T> writer) protected <T> reactor.core.publisher.Flux<T>ReactiveMongoTemplate.doInsertAll(Collection<? extends T> listToSave, MongoWriter<Object> writer) protected <T> Collection<T>MongoTemplate.doInsertBatch(String collectionName, Collection<? extends T> batchToSave, MongoWriter<T> writer) protected <T> reactor.core.publisher.Flux<T>ReactiveMongoTemplate.doInsertBatch(String collectionName, Collection<? extends T> batchToSave, MongoWriter<Object> writer) protected <T> TMongoTemplate.doSave(String collectionName, T objectToSave, MongoWriter<T> writer) protected <T> reactor.core.publisher.Mono<T>ReactiveMongoTemplate.doSave(String collectionName, T objectToSave, MongoWriter<Object> writer) -
Uses of MongoWriter in org.springframework.data.mongodb.core.convert
Subinterfaces of MongoWriter in org.springframework.data.mongodb.core.convertModifier and TypeInterfaceDescriptioninterfaceCentral Mongo specific converter interface which combinesMongoWriterandEntityReader.Classes in org.springframework.data.mongodb.core.convert that implement MongoWriterModifier and TypeClassDescriptionclassBase class forMongoConverterimplementations.classMongoConverterthat uses aMappingContextto do sophisticated mapping of domain objects toDocument. -
Uses of MongoWriter in org.springframework.data.mongodb.repository.query
Constructors in org.springframework.data.mongodb.repository.query with parameters of type MongoWriterModifierConstructorDescriptionConvertingParameterAccessor(MongoWriter<?> writer, MongoParameterAccessor delegate) Creates a newConvertingParameterAccessorwith the givenMongoWriterand delegate.