how to add one-to-one mapping for the self entity. Like in this example. I want to have parent-child relationship for the Person itself.
@Entity
@Table(name="PERSON")
public class Person {
@Id
@Column(name="personId")
private int id;
@OneToOne
@JoinColumn()
private Person parentPerson;
}
Here is example of bidirectional self mapping
@OneToOne
(I change column names to SQL notation):But, I don't understand why you want to use
@OneToOne
in this case.