标签: java mongodb
我想将动态mongodb查询转换为java驱动程序方法 但是跟随查找查询在mongodb和返回结果中是有效的,java驱动程序中没有合适的find方法重载
db.users.find({name:"sue"},{_id:0},{},{},{},{},{}) db.users.find({name:"sue"},1,1)
有人可以通过告诉我如何使用java驱动程序执行所有mongodb查询来帮助我,还是应该使用任何其他方法,这是执行动态mongodb查询的正确方法吗?