gpt4 book ai didi

java - JPA 和 Hibernate 中的 @Id 注解

转载 作者:行者123 更新时间:2023-11-30 10:47:02 26 4
gpt4 key购买 nike

如果我不想自动生成主键,我想提供以表的第一列作为主键的 ID。

2 A
4 B
7 D
13 E

...

我希望第一列 2,4,7,13 成为表的主键。我应该只使用@Id 来做注释吗?

@Entity
public class Code {
@Id
@Column(unique=true)
private int id;

...
}

或者,如果使用@Id,主键将始终自动生成,而不是使用第一列,在这种情况下?

最佳答案

@Id 将只声明主键。它不会插入生成的值。如果您使用 @GeneratedValue,那么它将生成该字段的值。

关于java - JPA 和 Hibernate 中的 @Id 注解,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36275309/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com