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...
The annotation `org.springframework.data.mongodb.repository.Meta` is used, among other things, to define a max execution time for the query: ```java interface MyRepository extends MongoRepository { @Meta(maxExecutionTimeMs = 10) Page findBySomeProperty(String someProperty); }...
This is one of the possible solutions for #4798
Forward maxTimeMsec from `Query` to `FindOneAndUpdateOptions`. Closes #4776
Hello, I have a Spring Boot service where I save data to different databases at runtime. Additionally, I need to customize some settings based on certain conditions. Therefore, I create...
This is one of the possible solutions for #4798