Jongo allows to query in Java as in Mongo shell; unmarshalling results into Java objects (by default with Jackson). Simply: peoples.find("{age: {$gt: 18}}").as(Friend.class)

learn more… | top users | synonyms

0
votes
1answer
35 views

find by Object Id in Jongo

I know this question is incredibly basic... I'm sorry in advance. I can't do a 'find by ID' for Mongo using Jongo. I tried Iterator<MongoTest> all = ...
0
votes
1answer
140 views

MongoDB aggregation cannot use $limit twice

I have the following MongoDB collection "Games": { "_id" : ObjectId("515461d3c6c18efd4a811fd3"), "gameid" : NumberLong("86982207656"), "tableName" : "Hydra Zoom 40-100 bb", "nplayers" : 6, ...
0
votes
1answer
75 views

$avg not returning average [closed]

this is my code: //Build the query //match only records in cluster 1 DBObject match = new BasicDBObject("$match", new BasicDBObject("clusterId",_id)); //the projected result ...
0
votes
1answer
97 views

unmarshall aggregate result with Jongo

I am using the MongoDB aggregate framework to query a document, the results is the following: { "result" : [ { "_id" : "luke", ...
1
vote
3answers
146 views

(MongoDB Java) $push into array

Good morning, I'm using mongo 2.2.3 and the java driver. My dilemma, I have to $push a field and value into an array, but I cant seem to figure out how to do this. A sample of my data: "_id" : 1, ...
1
vote
1answer
71 views

Java/Mongo Query with geoLocation and within specified timeframe

I am having some issues retrieving the correct date within a particular radius from MongoDB. I have a json example shown at the bottom. My goal is to search for all items close to a defined ...
1
vote
1answer
47 views

Manual references support

Consider the class: class Person { String name; Person father; Person mother; List<Person> children; } Is there a way to indicate to jongo that father, mother and children ...
2
votes
2answers
278 views

Jongo vs (DBObject)JSON.parse

I'm trying to figure out the advantage of Jongo over simply unmarshalling the json command using (DBObject)JSON.parse(...) and using the DBObject in the below fashion. Is there a performance ...
0
votes
1answer
300 views

Querying for date using jongo driver for mongo

I use jongo driver to connect to my mongoDB . The syntax for querying - for ex, some age less than 18 - is collection.find("{age: {$lt : 18}}"); but how to query for a date ? In the mongoDB the ...
0
votes
2answers
140 views

How to get jar lib files of jongo?

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 ...
3
votes
1answer
154 views

Mongo Java drivers & mappers performances

Mongo in Java can be used with several tools: the 10gen official driver an alternative async Java driver a mapper — a library built on top of a driver — Morphia, Jongo... (see complete list) Is ...
0
votes
0answers
88 views

Jongo save byte[] as base64 in mongodb

I am using jongo 0.2 and mongoDb driver 2.9.1 . I am convert photo to byte[] and save it on mongoDb but when I fetch the byte[] it return as base64 . when I look in mongoDb i see base64 format not ...
1
vote
1answer
249 views

Mongo : morphia doesn't map the _id in a jongo request

These are my objects : @XmlRootElement @XmlAccessorType(XmlAccessType.NONE) public abstract class AdtagEntity extends GenericEntity implements Serializable { private static final long ...
0
votes
1answer
128 views

Play-jongo unresolved dependency

I'm trying to use Play-jongo https://github.com/alexanderjarvis/play-jongo with Play 2.0. The Build.scala looks like this. val appDependencies = Seq( "uk.co.panaxiom" %% "play-jongo" % "0.2" ) val ...