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...
I'm using Spring data mongo and want to use collations for various queries. The collations need to work with the default repository methods as well as with custom queries. According...
**[Mark Paluch](https://jira.spring.io/secure/ViewProfile.jspa?name=mp911de)** opened **[DATAMONGO-1583](https://jira.spring.io/browse/DATAMONGO-1583?redirect=false)** and commented We should investigate on a way to resolve Mongo database references (`@DBRef`) lazily retaining reactive semantics. Currently, lazy `@DBRef` resolution incurs blocking data access...
From this issue: [issue](https://github.com/spring-projects/spring-data-mongodb/issues/4381) Now with reproduction: https://github.com/Lucasark/mongodb-multidata Behavior: Expected: Create index only on collection "NewDB1" of model_1, but it created on both collections
Good afternoon, I am currently doing a project where I am using an "aggregation" to do a $lookup, a $unwind and finishing with a $project. To simplify the data and...
Currently ci tests against many different server versions. Check against [MongoDB Sever Lifecycle](https://www.mongodb.com/support-policy/lifecycles) which ones to keep/drop.
Hello! I have problems using @DocumentReference My 2 model:   I tried my best to do as #3802 and other guides but it still returned errors when I called...
**[lnevaril](https://jira.spring.io/secure/ViewProfile.jspa?name=lnevaril)** opened **[DATAMONGO-2129](https://jira.spring.io/browse/DATAMONGO-2129?redirect=false)** and commented Framework `spring-data-mongodb` provides possibility to register own listeners for the lifecycle events through extending generic `AbstractMongoEventListener`. All lifecycle events are processed by `SimpleApplicationEventMulticaster` and corresponding...
The goal of this issue is to bring back together the different views on paths in the context of domain types, raw documents as well as queries and updates. Currently...
new in MongoDB 7.0: https://www.mongodb.com/docs/manual/core/indexes/index-types/index-wildcard/index-wildcard-compound/#compound-wildcard-indexes
when I try to make an update `{ $set: { "a.b.1.2": 1 } }`, the actually executed update was `{ $set: { "a.b.1": 1 } }`. https://github.com/hu-chia/minimal-reproduce-to-mongo-update-be-broken/blob/64fa3dc694c0db3b1813d3718194bd5be4e4ccd6/src/test/java/com/example/mongoupdate/TestMongoUpdateApplication.java#L30 ### minimal reproduce...