Realtionsatl Mapping in hiobernate code example
Example 1: jpa mapping
@Id
@GeneratedValue(Strategy = GenerationType.IDENTITY)
private Integer id;
Example 2: jpa mapping
@Column(name="annee_naissance")
private Integer anneeNaissance;
public void setAnneeNaissance(Integer a) {anneeNaissance = a;}
public Integer getAnneeNaissance() {return anneeNaissance;}