JPA自动生成ID

时间:2018-06-16 03:53:40

标签: jpa

我的主键如下:

@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不会自动生成。我在这里做错了什么?

0 个答案:

没有答案