This content has been marked as final.
Show 1 reply
-
1. Re: FK - with Composite Key
avihaimar Aug 21, 2008 3:10 AM (in response to avihaimar)The solution will be to use in "insertable=false"
like this:
@JoinColumns( { @JoinColumn(name = "first",referencedColumnName="first",insertable=false,updatable=false)
, @JoinColumn(name = "second",referencedColumnName="second",insertable=false,updatable=false) })