jpa store map code example
Example 1: jpa mapping
@Column
private String nom;
public void setNom(String n) {nom= n;}
public String getNom() {return nom;}
Example 2: jpa mapping
@Id
@GeneratedValue(Strategy = GenerationType.AUTO)
private Integer id;
private void setId(Integer i) { id = i; }
public Integer getId() { return id; }