My basic scenario is a bi-directional many-to-many relationship that is being mapped with JPA. Simple enough. However, I need to add a 'type' to the mapping, and I'm struggling with the best implementation. Here's the outline:

Network
   Set<Member> defaultMembers; //members that meet the network definition
   Set<Member> suppressedMembers; //members that meet the network definition, but are hidden.
   Set<Member> addedMembers; //memders that don't meet the network definition, but have been added in anyway.

Member
   Set<Network> attachedNetworks;

If I didn't need this to be bi-directional (e.g., I only needed to get to members from networks and didn't need to be able to travel the other way), the most obvious solution to me is one link table for each set of members (network_member, suppressed_member, added_member), but that falls apart going the other way. I suppose I could use a single link table and turn it into an entity with a discriminator column, but every time I've seen someone use a link table as an entity the code seems to turn into a disaster.

I've found many similar questions, but the questions have either been a little too specific, or the answers haven't quite covered the solution I'm seeking. Any suggestions on the best way to handle this situation?

link|improve this question

79% accept rate
feedback

1 Answer

The obvious, portable solutions are the following ones:

  1. use three join tables, and also have 3 sets of networks in the Member entity
  2. use an additional Attachment entity, having a member, a network, and a type of attachment (default, suppressed or added). Have a OneToMany bidirectional association between Network and Attachment, and another OneToMany bidirectional associatio between Member and Attachment.

If they don't fit, please explain why.

link|improve this answer
The first solution fits well enough; the main stumble is that from the Member perspective, I don't care about the type of attachment. Looking at it again, my real question might be "Is there a pattern I can use to keep my queries against Member simple when including Network relationships, rather than having to go against three separate collections?" I'll work on editing my question. – Ickster Feb 14 at 18:03
If that's the main objective, my second solution is probably the best one. – JB Nizet Feb 14 at 18:08
Ok, I just re-read your second suggestion and realized it's not what I initially assumed it to be. I'll take a look at setting that up. Thanks. – Ickster Feb 14 at 18:12
feedback

Your Answer

 
or
required, but never shown

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