欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jpa实现mysql的主键自增

程序员文章站 2022-03-02 14:57:31
...

在实体的主键上添加注解 @GeneratedValue(strategy=GenerationType.IDENTITY)

@Entity
@Table(name = "OPERATION_LOG")
public class test implements Serializable {
    @Id
    @GeneratedValue(strategy=GenerationType.IDENTITY)
    @Column(name = "operation_id")
    private Long operationid;
}