Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 should be manual references to other objects within the same collection instead of embedded objects?

Note: this is different from DBRefs.

share|improve this question

1 Answer

up vote 1 down vote accepted

Not yet.

The easiest way is to issue a second query manually.

Nevertheless, you can propably create a Jackson de/serializer to fetch documents during unmarshalling process. Few months ago, we have created a spike for fetching DBRef during unmarhsalling, this code can help : Handle DBRef during (un)marshalling

Feel free to add a feature request

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.