spring-data-mongodb
spring-data-mongodb copied to clipboard
Provides support to increase developer productivity in Java when using MongoDB. Uses familiar Spring concepts such as a template classes for core API usage and lightweight repository style data access...
Hi, i am spring-data-mongo user. I had some inconvenience when registered converters. Is currently manually register converters. ```kotlin @Bean fun mongoCustomConversions(): MongoCustomConversions { val converters = applicationContext.getBeansOfType(Converter::class.java).values .stream().collect(Collectors.toList()) return MongoCustomConversions(converters)...
**[yuremboo](https://jira.spring.io/secure/ViewProfile.jspa?name=yuremboo)** opened **[DATAMONGO-2132](https://jira.spring.io/browse/DATAMONGO-2132?redirect=false)** and commented Add possibility to save as DBRef Map with value which has list of entity objects. E.g. ```java @DBRef private Map children; ``` Expected behavior: In...
See: [$expr](https://docs.mongodb.com/manual/reference/operator/query/expr/index.html) Might be a good fit for `MongoExpression` from #3585 - `Criteria.expr(MongoExpression expression)` maybe? Origin: [SO#66320786](https://stackoverflow.com/questions/66320786/spring-data-mongodb-criteria-for-expr) Related: #2750
**[Shiv Jha-Mathur](https://jira.spring.io/secure/ViewProfile.jspa?name=shivjm)** opened **[DATAMONGO-2467](https://jira.spring.io/browse/DATAMONGO-2467?redirect=false)** and commented Perform uncorrelated subqueries between two collections as well as allow other join conditions besides a single equality match: ``` { $lookup: { from: ,...
In the documentation key words that use tags, e.g. "NOTE:" or "INFO:" were inconsistently formatted. I have: * capitalized the entire key word (NOTE, INFO) * added/moved the : inside...
**[Ilya Zinkevich](https://jira.spring.io/secure/ViewProfile.jspa?name=busotir)** opened **[DATAMONGO-2391](https://jira.spring.io/browse/DATAMONGO-2391?redirect=false)** and commented Hi, I get error with package org.springframework.boot:spring-boot-starter-data-mongodb:2.1.5.RELEASE Description: I have interface `Call` and class `TokBoxCall` (implements `Call`) in the code. There is default _typeKey_...
**[Vadzim Parafianiuk](https://jira.spring.io/secure/ViewProfile.jspa?name=proteinby)** opened **[DATAMONGO-1965](https://jira.spring.io/browse/DATAMONGO-1965?redirect=false)** and commented If I use `@Indexed` in one class, I want spring to create Index only in collection for this class, but it also creates index...
We have a POJO class that contains the Map with key type as String and value type as Object (Map). Until version 3.1, the Document from DB is converted properly...
First, the background. Recently I did a project and I wanted to use `MongoTemplate` to query the data collection corresponding to a certain Entity, and then to convert it into...