Is it possible in myBatis 3 to map a single result to multiple objects, ensuring that the objects all reference the same instance? Is there an example of this I could reference?

Updated to add more detail:

For instance, let's say I store information regarding Contacts for my application in my DB. I want to know if it's possible to use myBatis to map the same instance of a contact to, say, a Listing class, which holds a Contact:

public class Listing {
    private Contact myContact;
    //getters & setters...
}

as well as to a ContactsHolder class, which also holds a Contact:

public class ContactsHolder {
    private Contact aContact
    //getters & setters...
}

I need the object that is mapped by myBatis to both the Listing and ContactsHolder classes to be the same instance. Is this possible?

link|improve this question

Can you give more information on the problem your trying to solve? The result mapping in MyBatis 3 is extremely powerful, it does a lot. – Andy Pryor Oct 26 '11 at 18:38
@AndyPryor: I have updated my question for more detail as to the problem I'm trying to solve. I hope this helps clarify what I'm trying to do. Thanks! – holic87 Oct 26 '11 at 18:53
Are you trying to get an instance of "Listing" and and instance of "ContactsHolder" is one database call? – Andy Pryor Oct 26 '11 at 19:30
@AndyPryor: Yes, though it doesn't have to be in one database call necessarily. As long as the instance of the Contact that is mapped in both classes is the same, that's I all need. – holic87 Oct 26 '11 at 20:40
feedback

1 Answer

up vote 1 down vote accepted

No, MyBatis isn't able to do that with standard result mapping. (at least to my knowledge). You could select the "Contact" object, then build a Listing and ContactsHolder manually with both of them referencing the Contact.

Or implement a custom ResultSetHandler.

It's kind of a peculiar request, I'm not sure why you want the same instances shared across two objects like that. That's probably why no feature like this exists in MyBatis 3.

link|improve this answer
BTW, I was able to solve this using a myBatis plugin (pg. 17 of the User Guide) and intercepting the handleResultSets method in the ResultSetHandler class. I was able to add the same Contact instance contained in the result set to both my Listing and ContactsHolder classes. – holic87 Oct 27 '11 at 23:37
Good idea, I will update my answer to reflect. – Andy Pryor Oct 28 '11 at 14:50
feedback

Your Answer

 
or
required, but never shown

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