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 these jar lib files. Who could share this file with me?