org.hibernate.id.IdentifierGenerationException: ids for this class must be manually assigned before calling save():
Ошибка означает, что необходимо создать id класса вручную до того, как будет произведен вызов метода save().
Решение:
1 2 3 4 5 6 7 8 9 10 11 |
@Entity @Table(name = "contact_audit", schema = "", catalog = "javastudy") public class ContactAuditEntity implements Auditable<String, Integer>, Serializable { private Integer id; @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @Column(name = "id", nullable = false, insertable = true, updatable = true) public Integer getId() { return id; } |
Указать в аннотации стратегию создания id автоматически.
5
12193 Total Views 6 Views Today