gpt4 book ai didi

java - Hibernate saveOrUpdate() 尝试在应该更新时保存

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:51:17 25 4
gpt4 key购买 nike

我有一个名为 IssueParticipant 的 Hibernate 实体。它基本上描述了用户和问题(类似于 JIRA 或 Bugzilla 问题)之间的关系。它代表数据库中的一种多对多链接表,将用户 ID 链接到问题 ID,但还包括与通知设置相关的其他信息,因此将其视为自己的实体。

我在使用 userId 和 issueId 作为复合键时遇到了很大的问题,所以我创建了一个合成键,它是一个字符串(在 postgres 数据库中是一个 varchar),其格式如下:_。

现在,我有一个屏幕,用户可以在其中编辑与问题关联的所有用户,同时还可以编辑通知设置。在 Controller 类中,我创建了一个 IssueParticipants 列表,如下所示:

IssueParticipant participant = new IssueParticipant();
participant.setUser(accountUser);
participant.setIssue(issue);

因此,此时这些当然不由 Hibernate 管理。

然后在我的 DAO 中,我遍历它们并调用 saveOrUpdate(),期望如果数据库中存在具有相同合成键的 IssueParticipant,它将更新;否则它将被插入:

    for (IssueParticipant participant : participants) {
getCurrentSession().saveOrUpdate(participant);
savedIds.add(participant.getIssueUserKey());
}

(savedIds 是我正在维护的一个列表,这样我以后就会知道我应该从数据库中删除哪些 IssueParticipants)。

不过,我得到的不是我所期望的,而是一个异常:

org.postgresql.util.PSQLException: ERROR: duplicate key value violates unique constraint "issue_participant_pkey"

这是我的实体类,缩写为:

public class IssueParticipant extends Entity {

private String issueUserKey;
private Long issueId;
private Long userId;

// Edit: adding 'dateAdded' definition
private Date dateAdded;
// ...

// below may be null
private SPUser user;
private Issue issue;

public static IssueParticipant nulledIssueParticipant() {
IssueParticipant ip = new IssueParticipant();
return ip;
}
public String getIssueUserKey() {
return issueUserKey;
}

public void setIssueUserKey(String issueUserKey) {
this.issueUserKey = issueUserKey;
}

public Long getId() {
// currently meaningless
return 0L;
}

public Long getIssueId() {
return this.issueId;
}

public void setIssueId(Long issueId) {
this.issueId = issueId;
updateKey();
}

public Long getUserId() {
return this.userId;
}

public void setUserId(Long userId) {
this.userId = userId;
updateKey();
}

private void updateKey() {
issueUserKey = getIssueId() + KEY_SEP + getUserId();
}

public SPUser getUser() {
return user;
}

public void setUser(SPUser user) {
this.user = user;
setUserId(user.getId());
}

public Issue getIssue() {
return issue;
}

public void setIssue(Issue issue) {
this.issue = issue;
setIssueId(issue.getId());
}

// edit: adding 'dateAdded' methods
public Date getDateAdded() {
return dateAdded;
}

public void setDateAdded(Date dateAdded) {
this.dateAdded = dateAdded;
}

...

}

这是它的 hbm 文件:

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">

<hibernate-mapping default-lazy="false">
<class name="com.xxx.yyy.IssueParticipant" table="issue_participant">
<id name="issueUserKey" column="issue_user_key" type="string">
<generator class="assigned"/>
</id>
<version name="dateAdded" column="date_added" type="timestamp" unsaved-value="null" />
<property name="issueId" column="issue_id" />
<many-to-one name="user" column="user_id" class="com.xxx.yyy.SPUser" not-null="true" cascade="none" />
<property name="alertRss" column="alert_rss" type="boolean" />
<property name="alertEmail" column="alert_email" type="boolean" />
<property name="alertWeb" column="alert_web" type="boolean" />
<property name="alertClient" column="alert_client" type="boolean" />

</class>
</hibernate-mapping>

而且确实user_issue_key是相应数据库表中的主键。

我觉得在这种情况下,正确的解决方案可能只是使用 SpringJDBC,但我真的很想弄清楚这里发生了什么。有人有什么想法吗?提前致谢。

最佳答案

saveOrUpdate() 不会查询数据库来决定是保存还是更新给定的实体。它根据实体的状态做出决定,如下所示:

  • if the object is already persistent in this session, do nothing
  • if another object associated with the session has the same identifier, throw an exception
  • if the object has no identifier property, save() it
  • if the object's identifier has the value assigned to a newly instantiated object, save() it
  • if the object is versioned by a <version> or <timestamp>, and the version property value is the same value assigned to a newly instantiated object, save() it
  • otherwise update() the object

因此,据我所知,在您的案例中,决定是基于 dateAdded 字段的值,因此您需要保留它以区分新实例和分离实例。

另请参阅:

关于java - Hibernate saveOrUpdate() 尝试在应该更新时保存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10917192/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com