A spring-data connector that enables integration with MongoDB document database.
I am having trouble writing code that would allow get a user and claim details in a straightforward way. This …
java mongodb spring-mongo spring-mongodbI'm a new Mongodb and I have a problem with $lookup with java spring. I would like to use this …
java mongodb spring-mongoI have a spring-boot application and I am trying to run this below query using it. db.userActivity.findAndModify( { query: { …
java spring mongodb spring-boot spring-mongoI am working with Spring MongoDb. I create various entities using insert method: http://docs.spring.io/spring-data/mongodb/docs/…
mongodb spring-mongoMy enums are stored as int in mongodb (from C# app). Now in Java, when I try to retrieve them, …
spring mongodb spring-mongoI am following the Accessing Data with MongoDB tutorial on Spring web site I Installed Mongo DB server version 4 as …
java mongodb spring-boot spring-mongoIs there any way to represent below query using spring-data mongo @Query annotation. db.users.find({userName: "titogeo"}, {requests: 1, _id:0}) …
java mongodb spring-data spring-mongoHow to change the mongo connection pool size? I have seen it is 100 by default. Is there a way to …
java spring mongodb mongo-java spring-mongoI am trying to create dynamic query with user input with and operation My code is I created List of …
java spring mongodb spring-mongoI have a mongo aggregate group query: db.wizard.aggregate( { $group: { _id: "$title", versions: { $push: {version:"$version", author:"$author", dateAdded:"$…
java spring mongodb spring-data-mongodb spring-mongo