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...
Hello I have saved some time series data in a field type LocalTime. When a LocalTime type field saved into MongoDB collection, it is saved as in MongoDB data type...
Remove joda time converters converting to non native types from StoreConversions. [DATAMONGO-2472]
**[Christoph Strobl](https://jira.spring.io/secure/ViewProfile.jspa?name=cstrobl)** opened **[DATAMONGO-2472](https://jira.spring.io/browse/DATAMONGO-2472?redirect=false)** and commented reading: `java.time.LocalDateTime` -> `org.joda.time.LocalDateTime` --- No further details from [DATAMONGO-2472](https://jira.spring.io/browse/DATAMONGO-2472?redirect=false)
Hello friend. I'm trying to use spring boot version 2.6.3, spring-boot-starter-data-mongodb-reactive 2.6.3, spring data mongodb 3.3.1 I got warning as following: 2022-02-18 08:37:56.553 WARN 30620 --- [ restartedMain] o.s.data.convert.CustomConversions :...
**[Dan Markhasin](https://jira.spring.io/secure/ViewProfile.jspa?name=minimizer)** opened **[DATAMONGO-1863](https://jira.spring.io/browse/DATAMONGO-1863?redirect=false)** and commented As described in [DATAMONGO-525](https://jira.spring.io/browse/DATAMONGO-525) (https://jira.spring.io/browse/DATAMONGO-525), we are looking for a way to generate collection names dynamically to support multi-tenancy. This can be achieved by...
**[Rasheed Amir](https://jira.spring.io/secure/ViewProfile.jspa?name=rasheed)** opened **[DATAMONGO-1651](https://jira.spring.io/browse/DATAMONGO-1651?redirect=false)** and commented We have some entities which are extendable. And in order to make them extedable we have a field of type `com.fasterxml.jackson.databind.node.JsonNode` in them; so,...
**[Egor Lyashenko](https://jira.spring.io/secure/ViewProfile.jspa?name=yagich)** opened **[DATAMONGO-1440](https://jira.spring.io/browse/DATAMONGO-1440?redirect=false)** and commented I'm trying to introduce auditing by using `@LastModifiedDate` annotation. It works fine for top-level documents but I've faced with the problem for embedded objects....
In my case, when pagequery the collections in mongodb, which size more than 1000, such as `mongoTemplate.find(new Query().limit(1000),xxx.class)` the cost time of querying is too much, and then I find...
Consider adding the Callbacks also for Delete operations under https://github.com/spring-projects/spring-data-mongodb/tree/main/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/mapping/event. E.g. before deleting Document A it could be possible to delete all the `@DocumentReference` fields of A.
Since the auto indexes were set to false by default, creating the indexes programmatically on a spring application causes indexes to be created wrong. It seems the cause for this...