我在Hibernate中遇到一个奇怪的问题。在多线程环境中操作,当尝试插入其中一个表时,在表中获取重复条目。只有主键不同,其他所有字段都完全重复。
使用Hibernate + Oracle并使用Spring - HibernateTemplate对象。
这是我的BO类的相关部分,下面给出了保存对象的代码。不使用任何瞬态字段。
检查了与此相关的其他帖子,但都没有解决问题的根本原因。我不想在db表上引入任何约束/唯一索引。
@Entity
@Table(name="ADIRECIPIENTINTERACTION")
@Lazy(value = true)
@Cache(usage = CacheConcurrencyStrategy.READ_WRITE)
@GenericGenerator(name="recipientInteractionSeq", strategy = "native", parameters =
{ @Parameter(name="sequence", value="SEQiRecipientInteractId")})
public class RecipientInteractionBO extends BusinessObject{
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(generator = "recipientInteractionSeq", strategy = GenerationType.AUTO)
@Column(name="IRECIPIENTINTERACTIONID")
private long lId; ....
这是用于保存BO的代码。
-----------------------------------------------------
RecipientInteractionBO recInt = (RecipientInteractionBO) objectPS
.getUniqueResult(detachedCriteria);
if (recInt == null) {
recInt = new RecipientInteractionBO();
....
hibernateTemplateObj.insertObject(recInt);
} else {
...
hibernateTemplateObj.saveOrUpdate(recInt);
}
如果需要任何其他详细信息,请与我们联系。
答案 0 :(得分:1)
检查数据持久性代码,了解多个线程的可能竞争条件。您正在检查是否存在可能从数据库查询的RecipientInteractionBO
。如果两个线程同时运行,则两个线程都检查它是否存在,因为两个线程都不存在,所以它们都存在新实体。您可能需要使用同步来使检查和插入/更新过程一次仅针对一个线程完成。