我有两个实体(A 和 B)。A 与实体 B 具有一对多的关系。实体 A 的主键是自动递增的,而实体 B 的主键是复合的(由作为外键的实体 A 的 PK 和一个自动递增的 id 组成)。
注意:我使用 EJB 3.1 和 MySQL,Jboss7
我从我的业务对象中填充实体 A 并按以下方式创建它。
A a = new A();
Set<B> bEntitiesList = new HashSet<B>();
B b = new B();
b.setCompositeKey(new compositeKey()); // I am not setting any value in the
// key and it will have null values for idA and idB.
// idB is null because it will be auto incremented in this table by MySQL
bEntitiesList.put(b);
a.setBEntities(bEntitiesList);
entityManager.persist(a);
每当我在 bEntities 列表中传递实体 B 的一个对象时,程序按预期工作,数据库中的所有字段都正确填充,但是当我在 bEntities 列表中添加多个对象实体 B 时,我得到异常“javax.persistence .EntityExistsException:具有相同标识符值的不同对象已与会话关联”。我不知道如何解决这个问题。该消息清楚地表明休眠会话已找到重复条目(这是由于 Compositekey 覆盖了 MyEclipse 默认生成的方法,该方法生成相同的哈希码,但我不确定这是导致问题的原因)。请告诉我如何解决这个问题。是否需要覆盖compositekey 类中的equals 和hashcode 方法?提前致谢。
public class A
{
private Integer idA;
private Set<B> bEntities = new HashSet<B>(0);
@Id
@GeneratedValue(strategy = IDENTITY)
@Column(name = "A", unique = true, nullable = false)
public Integer getIdA() {
return this.idA;
}
@OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY, mappedBy = "A")
public Set<B> getBEntities() {
return this.bEntities;
}
}
public class B
{
private compositeKey key;
private A entityA;
@EmbeddedId
@AttributeOverrides({
@AttributeOverride(name="idB",column=@Column(name="idB",nullable=false))})
public compositeKey getKey() {
return this.key;
}
public void setKey(compositeKey key) {
this.key = key;
}
@ManyToOne(fetch = FetchType.LAZY)
@MapsId("providerReferenceNo")
@JoinColumn(name = "idA", nullable = false, insertable = false, updatable = false)
public A getEntityA() {
return this.entityA;
}
}
@Embeddable
public class compositeKey {
private Integer idA;
private Integer idB;
@GeneratedValue(strategy = IDENTITY)
@Column(name = "idB", nullable = false)
public Integer getIdB() {
return this.idB;
}
@Column(name = "idA", nullable = false)
public Integer getIdA() {
return this.idA;
}