I want to convert the following json
structure to BasicDBOject
in java and insert into mongo db.
My JSON structure is
{
"it": {
"batch": "2013",
"students": [
{
"name": "joe"
},
{
"name": "john"
}
]
}
}