使用杰克逊解析mongodb样式的json find()

时间:2018-09-16 18:53:39

标签: json jackson

使用jackson是一种以以下mongodb find()格式解析json的好方法。

{
    $and : [
        { $or : [ { price : 0.99 }, { price : 1.99 } ] },
        { $or : [ { sale : true }, { qty : { $lt : 20 } } ] }
    ]
} 

我需要将其转换为sql where语句。 我应该穿过那棵树吗?

谢谢

0 个答案:

没有答案