I am using JPA for my project. I am stuck with getting to retrieve entities in a OneToMany relation.

Here is the scenario.

My Entities are

EntityX -Id -name -etc

EntityY -Id -name -etc

EntityZ -Id -name -etc

EntityD -Id -EntityRefType (Enum of X/Y/Z) -EntityRefId (Can be X.id Or Y.id or Z.id based on the entity ref type)

Within EntityX How do i specify that the EntityRefType has to be X?:

EntityX ...

@OneToMany(fetch = fetchtype.lazy)
@JoinColumns{ @JoinColumn(name = "EntityRefId"), ??? }
List<EntityD> entityDs;
...

I need help to write out the relation in entity X to load certain list of entityD values.

Thanks for the help

link|improve this question

50% accept rate
I'm pretty sure such a mapping is impossible with raw JPA. Hibernate could do it with a Filter annotation, AFAIK. – JB Nizet Aug 24 '11 at 12:55
@JBNizet I could have done it via a dao, but this is have to be within an entity, and i cannot put the dao within this, defeats the point – Abhilash Aug 24 '11 at 12:57
1  
I never suggested using a DAO. I just said it wasn't, AFAIK, possible with pure JPA. If you're using Hibernate as JPA implementation, it might be possible with Hibernate's proprietary Filter annotation. But you didn't tell which JPA implementation you were using (Hibernate? EclipseLink? OpenJPA? other?) – JB Nizet Aug 24 '11 at 13:09
@JBNizet We are using Hibernate as the implementation. But, I cannot use something Hibernate specific while the whole codebase is JPA compliant – Abhilash Aug 24 '11 at 13:16
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.