首页 > 移动平台 > 详细

玩转JPA(一)---异常:Repeated column in mapping for entity/should be mapped with insert="false" update="fal

时间:2014-07-22 23:47:28      阅读:3326      评论:0      收藏:0      [点我收藏+]

最近用JPA遇到这样一个问题:Repeated column in mapping for entity: com.ketayao.security.entity.main.User column: org_id (should be mapped with insert="false" update="false")

这个错误是由实体类引起的,我一开始是这样写的:

@Column
private long orgId;

@ManyToOne
@JoinColumn(name="orgId")
private Organization organization;

在这里get和set方法就省略了。

修改为下面这样就好:

@Column(insertable=false,updatable=false)
private long orgId;

@ManyToOne
@JoinColumn(name="orgId")
private Organization organization;

玩转JPA(一)---异常:Repeated column in mapping for entity/should be mapped with insert="false" update="fal,布布扣,bubuko.com

玩转JPA(一)---异常:Repeated column in mapping for entity/should be mapped with insert="false" update="fal

原文:http://blog.csdn.net/u012116457/article/details/38052369

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!