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.