与hibernate的父/子关系出现问题

时间:2010-07-15 11:26:52

标签: java hibernate

我面临父母子女关系的问题 Hibernate文档说在子类中添加“多对一”关系以从父级获取外键的值。但是为了使这种关系起作用,我必须在子类中添加Invoice属性,该子属性引入父子循环包含到子节点并打破我的序列化器。有人能指出我在哪里做错了吗?

这是我的代码:

Invoice.java

public class Invoice implements Serializable {
  private Long id;
  private Date invDate;
  private String customer;
  private Set<InvoiceItem> items;
  ... getters/setters ...
}

InvoiceItem.java

public class InvoiceItem implements Serializable {
  private Long itemId;
  private long productId;
  private int quantity;
  private double price;
  private Invoice invoice; //???????
  ... getters/setters ...
}

Invoice.hbm.xml

<class name="Invoice" table="Invoices">
  <id name="id" column="ID" type="long">
    <generator class="native" />
  </id>
  <property name="invDate" type="timestamp" />
  <property name="customer" type="string" />

  <set name="items" inverse="true" cascade="all-delete-orphan">
    <key column="invoiceId" />
    <one-to-many class="InvoiceItem" />
  </set>
</class>

InvoiceItem.hbm.xml

<class name="InvoiceItem" table="InvoiceItems">
  <id name="itemId" type="long" column="id">
    <generator class="native" />
  </id>

  <property name="productId" type="long" />
  <property name="quantity" type="int" />
  <property name="price" type="double" />

<many-to-one name="invoiceId" class="Invoice" not-null="true"/> <!--????????-->
</class>

1 个答案:

答案 0 :(得分:2)

如果删除inverse =“true”属性,则不必在InvoiceItem中引用Invoice。 然后,Hibernate将创建一个单独的映射表,而不是在InvoiceItem表中使用外键。

删除InvoiceItem集上的inverse属性,同时从InvoiceItem中删除Invoice属性,并在映射中删除相应的many-to-one,你应该得到你想要的。

或者,您可以将InvoiceItem中的Invoice引用标记为transient,并在反序列化期间处理填充值:迭代Invoice中的Item of Items,并将每个项目的invoice属性设置为拥有的发票。