Tagged Questions
0
votes
0answers
101 views
how to update nested objects in array that match the condition in spring data - mongodb?
I have a document in mongodb that has been created from this java model:
class Comment
{
String pollID;
List<CommentDetail> commentDetailList;
}
class CommentDetailList
{
String ...
0
votes
2answers
284 views
ORM for Spring-MongoDB integration with native querying support
I am a new to using Mongo DB and exploring the frameworks around for migrating from mysql to mongodb. So far from my findings I have been able to figure out SpringMongo as the best solution to my ...
0
votes
2answers
155 views
dropDatabase from spring mongo
I would like to dropDatabase in my mongo before my integration tests. Is it possible to do this through spring mongo ?
If it's not available for now, is it possible on fetching the com.mongodb.DB ...