我的主键如下:
@Id
@SequenceGenerator(name = "myIdSeq", sequenceName = "ID_SEQ")
@GeneratedValue(strategy = GenerationType.AUTO, generator = "myIdSeq")
@Column(name = "ID", nullable = false, updatable = false, unique = true)
@JsonProperty("Id")
private Long Id;
尝试保存记录时,出现以下错误:
完整性约束违规:NOT NULL检查约束;表:MY_TABLE列:ID
看起来ID不会自动生成。我在这里做错了什么?