spring-data-mongodb icon indicating copy to clipboard operation
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...

Results 316 spring-data-mongodb issues
Sort by recently updated
recently updated
newest added

This PR makes sure to apply conversion to non native mongo types when the context does not expose fields. Resolves: #4722

**[Jesse Kuhnert](https://jira.spring.io/secure/ViewProfile.jspa?name=jkuhnert)** opened **[DATAMONGO-2104](https://jira.spring.io/browse/DATAMONGO-2104?redirect=false)** and commented The apt-maven-plugin / MongoAnnotationProcessor querydsl generation combination for spring mongo does not appear to be picking up and adding near / distance calculation support...

type: bug
in: core

This is similar to already closed https://github.com/spring-projects/spring-data-mongodb/issues/4285. If I include `$replaceRoot` stage, aggregation fails with `CodecConfigurationException`. Below is the (bit anonymized) aggregation itself. Workaround is to use `$project` instead of...

status: feedback-provided

Hi, I am using a sparse index on the field `fieldFoo` and to best utilize it, I need to add an extra `$exists` condition before the `$eq`one. When I manually...

type: enhancement

I do not see the VectorSearch aggregation pipeline available in the Aggregation package. Is this something on the roadmap?

status: pending-design-work
type: enhancement

Hi. When you create an aggregation pipeline and use a sort operation with `Sort.unsorted()` an exception is thrown (`UncategorizedMongoDbException`). The reason for the exception is, that the sort stage is...

type: documentation

It'd be nice to execute all update options in update repositories like: ``` @Query("{}") @Update("{${'$'}set: {'productDetails.${'$'}[elem].isExcluded': false}}, {arrayFilters: [{'elem.id': ?0}]}") suspend fun deleteProductDetailById(productId: String): Int ``` But mongo repositories seems...

type: enhancement

Hello! I would like to describe a problem with replacement of annotation ```@DBRef``` to annotation ```@DocumentReference``` in case old data in MongoDB exist. For this purpose I have created a...

status: feedback-provided