我在映射包含列表(或地图)的实体时遇到问题。我已经尝试了各种注释组合,但是“最好”的两种变体都有这种行为。例如,如果父对象有 3 个子对象,则检索父对象 3 次。
我的代码
在我的情况下,我有一个UserOrder
对象,其中包含Product
带有计数的 s 对。数据结构看起来像这样
@Entity
public class UserOrder{
/*
* VARIATION 1
* I did actually vary some of these annotions, not all are necessary.
* I believe the @CollectionTable is the key here
*/
@ElementCollection(fetch = FetchType.EAGER)
@CollectionTable
@Column
@Embedded
private List<ProductCount> products;
/*
* VARIATION 2
*/
@ElementCollection(fetch = FetchType.EAGER)
private Map<Product, Integer> products = new HashMap<Product, Integer>();
// get/set
// ...
}
@Embeddable
/* Only used in variation 1 */
public class ProductCount{
@OneToOne
private Product product;
@Column
private Integer amount;
// get/set
}
@Entity
public class Product
{
// ...
}
然后使用类似这样的方法调用和显示(这是用于变体 2)
<!-- Called via DAO/Service layers
List<Order> orders = getSession().createCriteria(UserOrder.class).list();
-->
<c:forEach items="${orders}" var="order">
<fmt:formatDate value="${order.time}" type="both" />
<c:forEach items="${order.products}" var="pc">
${pc.value} x ${pc.key.name}
</c:forEach>
</c:forEach>
作为记录,我使用的是 Spring (3.1)、Hibernate (3.5),我想继续使用 JPA 注释。
问题
当我检索订单时,我会UserOrder
为它包含的每个产品获得一个 -object,而不是为UserOrder
我存储的每个订单获得一个。所以我在我的列表中得到了重复,所有这些都包含它包含的产品的完整信息。没有产品的订单也包括在内
- 订单 1 -- 有 2 个产品
- 1 x 狗玩具1
- 3 x 猫玩具 1
- 订单 1 -- 有 2 个产品
- 1 x 狗玩具1
- 3 x 猫玩具 1
- 订单 2 -- 有 1 个产品
- 3 x 猫玩具 1
- 订单 3 -- 有 0 个产品
如何让 Hibernate 向我返回一 (1) 个UserOrder
而不是每个产品一个?或者,我是否采取了正确的方法来建模这个结构?