Pessoal
como faz auto relacionamento no hibernate annotations?
Uma pessoa tem uma pessoa
TABELA PESSOA
COD_PESSOA
COD_PESSOA_ASS
Pessoal
como faz auto relacionamento no hibernate annotations?
Uma pessoa tem uma pessoa
TABELA PESSOA
COD_PESSOA
COD_PESSOA_ASS
Olá
Você já tentou assim?
[code]@Entity
class Pessoa {
@Id
@Column(name = “COD_PESSOA”)
private int codigo;
@OneToOne
@JoinColumn(name = "COD_PESSOA_ASS")
private Pessoa pessoa;
}[/code]