|
Spring Data Document | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use MongoWriter | |
|---|---|
| org.springframework.data.document.mongodb | MongoDB core support. |
| org.springframework.data.document.mongodb.convert | |
| org.springframework.data.document.mongodb.repository | MongoDB specific repository implementation. |
| Uses of MongoWriter in org.springframework.data.document.mongodb |
|---|
| Subinterfaces of MongoWriter in org.springframework.data.document.mongodb | |
|---|---|
interface |
MongoReaderWriter<T>
|
| Methods in org.springframework.data.document.mongodb with parameters of type MongoWriter | ||
|---|---|---|
|
MongoTemplate.insert(String collectionName,
T objectToSave,
MongoWriter<T> writer)
|
|
|
MongoOperations.insert(String collectionName,
T objectToSave,
MongoWriter<T> writer)
Insert the object into the specified collection. |
|
|
MongoTemplate.insert(T objectToSave,
MongoWriter<T> writer)
|
|
|
MongoOperations.insert(T objectToSave,
MongoWriter<T> writer)
Insert the object into the default collection. |
|
|
MongoTemplate.insertList(List<? extends T> listToSave,
MongoWriter<T> writer)
|
|
|
MongoOperations.insertList(List<? extends T> listToSave,
MongoWriter<T> writer)
Insert a list of objects into the default collection using the provided MongoWriter instance |
|
|
MongoTemplate.insertList(String collectionName,
List<? extends T> listToSave,
MongoWriter<T> writer)
|
|
|
MongoOperations.insertList(String collectionName,
List<? extends T> listToSave,
MongoWriter<T> writer)
Insert a list of objects into the specified collection using the provided MongoWriter instance |
|
|
MongoTemplate.save(String collectionName,
T objectToSave,
MongoWriter<T> writer)
|
|
|
MongoOperations.save(String collectionName,
T objectToSave,
MongoWriter<T> writer)
Save the object into the specified collection using the provided writer. |
|
|
MongoTemplate.save(T objectToSave,
MongoWriter<T> writer)
|
|
|
MongoOperations.save(T objectToSave,
MongoWriter<T> writer)
Save the object into the default collection using the provided writer. |
|
| Uses of MongoWriter in org.springframework.data.document.mongodb.convert |
|---|
| Subinterfaces of MongoWriter in org.springframework.data.document.mongodb.convert | |
|---|---|
interface |
MongoConverter
|
| Classes in org.springframework.data.document.mongodb.convert that implement MongoWriter | |
|---|---|
class |
MappingMongoConverter
MongoConverter that uses a MappingContext to do sophisticated mapping of domain objects to
DBObject. |
class |
SimpleMongoConverter
Basic MongoConverter implementation to convert between domain classes and DBObjects. |
| Uses of MongoWriter in org.springframework.data.document.mongodb.repository |
|---|
| Constructors in org.springframework.data.document.mongodb.repository with parameters of type MongoWriter | |
|---|---|
ConvertingParameterAccessor(MongoWriter<Object> writer,
org.springframework.data.repository.query.ParameterAccessor delegate)
Creates a new ConvertingParameterAccessor with the given MongoWriter and delegate. |
|
|
Spring Data Document | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||