Follow at jongo a java library on top of MongoDB allow Query in Java as in Mongo shell. Example:
SHELL
db.friends.find({"age": {$gt: 18}});
JAVA DRIVER
friends.find(new BasicDBObject("age",new BasicDBObject("$gt", 18)));
JONGO
friends.find("{age: {$gt: 18}}").as(Friend.class);
But i can't find anything to download this jar lib files. Who could share this file for me?
Thanks in advanced.