In my application I use JPA 2.0 with hibernate as the persistence provider. I have a OneToMany relationship between two entities (using a @JoinColumn and not @JoinTable). I wanted to know how could I specify inverse=true (as specified in hbm.xml) in JPA annotations to reverse the relationship owner.

Thank you.

link|improve this question

24% accept rate
What exactly do you want to achive? – axtavt Feb 1 '11 at 16:45
As you know inverse controls which entity in the relationship updates the foreign key. stackoverflow.com/questions/4439756/…. In my one-to-many relationship I want to specify this. – Andy Dufresne Feb 2 '11 at 6:42
feedback

1 Answer

up vote 6 down vote accepted

I found an answer to this. The mappedBy attribute of @OneToMany annotation behaves the same as inverse = true in the xml file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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