我想将以下json
结构转换为BasicDBOject
java 并插入 mongo db。
我的 JSON 结构是
{
"it": {
"batch": "2013",
"students": [
{
"name": "joe"
},
{
"name": "john"
}
]
}
}