JPA中,在调用persist()时,数据库自动增长的主键如何处理
比如有一张表account是id,username,password.其中id是数据库自增长主键。创建了一个account对象a,字段username和password自...
比如有一张表account是 id, username, password.其中id是数据库自增长主键。
创建了一个account对象a,字段username和password自己赋值,那么em.persist(a)时,会报错。因为我没有给id..但id是数据库自增长的,我应该怎么处理啊?
初学者,恳请指教。 展开
创建了一个account对象a,字段username和password自己赋值,那么em.persist(a)时,会报错。因为我没有给id..但id是数据库自增长的,我应该怎么处理啊?
初学者,恳请指教。 展开
3个回答
展开全部
在数据库里面建一个序列,插入之前先查出序列号,然后把它当id插进去
追问
能给一些代码示例么?大概写几行就好了。谢谢啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
@GeneratedValue
这个默认的id生成策略是自增的。
你在你的实体类中标记了么?类似于下面的?
private Integer id;
private String name;
private Catalog parent;
private Set<Catalog> childs;
@Id
@Column(name="id",unique=true,nullable=false,insertable=true)
@GeneratedValue
public Integer getId() {
return id;
}
这个默认的id生成策略是自增的。
你在你的实体类中标记了么?类似于下面的?
private Integer id;
private String name;
private Catalog parent;
private Set<Catalog> childs;
@Id
@Column(name="id",unique=true,nullable=false,insertable=true)
@GeneratedValue
public Integer getId() {
return id;
}
追问
没有。。我试试
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询