IntelliJ Java IDE
The moose likes EJB Certification (SCBCD/OCPJBCD) and the fly likes Dout in @JoinColumn annotation Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Professional Certification » EJB Certification (SCBCD/OCPJBCD)
Reply Bookmark "Dout in @JoinColumn annotation" Watch "Dout in @JoinColumn annotation" New topic
Author

Dout in @JoinColumn annotation

Satyajeet Kadam
Ranch Hand

Joined: Oct 19, 2006
Posts: 202
I am having Person table that is having one to one relationship with PersonDetail table.
Person.java


Perondetails


personDetailId is primary key in the Persondetail class and it is mapped to the personDetailId in Peron class which is foregin key.



I am getting the exception as below


Q1) Please kindly let me know what has gone wrong in using @JoinColumn?
Frits Walraven
Rancher

Joined: Apr 07, 2010
Posts: 742

Hi,

Q1) Please kindly let me know what has gone wrong in using @JoinColumn?

The problem is not with the @JoinColumn, but with the @OneToOne annotation. Just place the @OneToOne above the getter:

Regards,
Frits
 
 
subject: Dout in @JoinColumn annotation
 
Threads others viewed
Foreign key value null if nullable true in @OneToMany assoc
org.hibernate.AnnotationException: mappedBy reference an unknown target entity property
Value for JoinColumn in ManyToOne is getting inserted as Null
jpa problem
java.sql.SQLData - Oracle object mapping problem
IntelliJ Java IDE