Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my application I use JPA 2.0 with Hibernate as the persistence provider. I have a one-to-many 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.

share|improve this question
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

1 Answer

up vote 12 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.

share|improve this answer
Also, this question has more information: stackoverflow.com/questions/11938253/jpa-joincolumn-vs-mappedby. – SoWeLie Apr 1 at 13:51

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.