package io.trygvis.container.myapp; import javax.persistence.Entity; import javax.persistence.SequenceGenerator; @Entity @SequenceGenerator(name = "id_seq") public class Contact extends AbstractEntity { public String name; // public Contact mother; public Contact(String name) { super(null); this.name = name; } public Contact(Long id, String name) { super(id); this.name = name; } }