如何阻止 Hibernate 尝试更新一对多 Over Join 表
好吧,我的 Hibernate 映射和获得所需行为时遇到了一些问题。
基本上我拥有的是以下 Hibernate 映射:
<hibernate-mapping>
<class name="com.package.Person" table="PERSON" schema="MYSCHEMA" lazy="false">
<id name="personId" column="PERSON_ID" type="java.lang.Long">
<generator class="sequence">
<param name="sequence">PERSON_ID_SEQ</param>
</generator>
</id>
<property name="firstName" type="string" column="FIRST_NAME">
<property name="lastName" type="string" column="LAST_NAME">
<property name="age" type="int" column="AGE">
<set name="skills" table="PERSON_SKILL" cascade="all-delete-orphan">
<key>
<column name="PERSON_ID" precision="12" scale="0" not-null="true"/>
</key>
<many-to-many column="SKILL_ID" unique="true" class="com.package.Skill"/>
</set>
</class>
</hibernate-mapping>
<hibernate-mapping>
<class name="com.package.Skill" table="SKILL" schema="MYSCHEMA">
<id name="skillId" column="SKILL_ID" type="java.lang.Long">
<generator class="sequence">
<param name="sequence">SKILL_ID_SEQ</param>
</generator>
</id>
<property name="description" type="string" column="DESCRIPTION">
</class>
</hibernate-mapping>
因此,让我们假设我已经在技能表中填充了一些技能。现在,当我创建一个新人员时,我想通过设置技能 ID 将其与技能表中已存在的一组技能相关联。例如:
Person p = new Person();
p.setFirstName("John");
p.setLastName("Doe");
p.setAge(55);
//Skill with id=2 is already in the skill table
Skill s = new Skill()
s.setSkillId(2L);
p.setSkills(new HashSet<Skill>(Arrays.asList(s)));
PersonDao.saveOrUpdate(p);
如果我尝试这样做,但我收到一条错误消息:
WARN (org.slf4j.impl.JCLLoggerAdapter:357) - SQL Error: 1407, SQLState: 72000
ERROR (org.slf4j.impl.JCLLoggerAdapter:454) - ORA-01407: cannot update ("MYSCHEMA"."SKILL"."DESCRIPTION") to NULL
ERROR (org.slf4j.impl.JCLLoggerAdapter:532) - Could not synchronize database state with session
org.hibernate.exception.GenericJDBCException: Could not execute JDBC batch update
我收到此错误的原因是因为 Hibernate 发现 ID 为 2 的技能已将其描述“更新”为 null(因为我从未设置过它)并尝试更新它。但我不希望 Hibernate 更新这个。我想要它做的是插入新的 Person p 并将一条记录插入到连接表 PERSON_SKILL 中,该记录将 p 与 SKILL 表中 id=2 的技能相匹配,而不触及 SKILL 表。
有没有办法实现这种行为?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能是可能的如果你不级联
all-delete-orphan
它明确告诉hibernate级联更改。但正确的方法是从数据库中加载所需的
Skill
实体,并将其添加到Person
的技能集中。This may be possible if you don't cascade
all-delete-orphan
which is explicitely telling hibernate to cascade the changes.But the right way would be IMO to load load the desired
Skill
entity from the database and to add it to the set of skills of thePerson
.不要自己创建 Skill 对象:
您应该从 Hibernate Session 中检索它:
这样,Session 就会认为
p.skills
中包含的技能是 持久的,而不是暂时的。Instead of creating the Skill object yourself:
You should be retrieving it from the Hibernate Session:
This way the Session thinks that the skill contained in
p.skills
is persistent, and not transient.