图源:简书 (jianshu.com) Hibernate 中的实体,由标识符(Identitifier)确定了其实体实例的唯一性,这对应于表中的主键。 @Id 对于单一属性作为标识符的情况,可以用@Id注解标注: @Entity(name = "Person5") @Inheritance(strategy = InheritanceType.TABLE_PER_CLASS) public class Person { @Id private Long id; } 被@Id标注的属性类型必须是 Jav…