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;
}
上一篇: jpa关联外键查询
下一篇: JPA之映射mysql text类型问题