Hibernate Annotations:两个实体之间的两种关系类型?

时间:2012-08-26 14:25:38

标签: java mysql hibernate orm annotations

我的场景是用户表和图片表。每个用户可以上传多张图片。每个用户都可以将自己的一张图片设置为自己喜欢的图片,但这不会影响该图片在该用户的图片集中。

将此映射到hibernate已被证明是困难的。我的应用程序有一个屏幕,显示所有用户图片的列表,并说明哪一个是他们的最爱。但是,当应用程序加载图片时,最喜欢的图片不会加载。 eclipse中的调试为列表中的特定对象显示了各种有趣的东西,也许它是一个代理对象。以下是显示映射的实体代码:

@Entity
class Account {
    @Id
    public String username;

    /* Originally a Set<Picture>, but wanted ordering */
    @OneToMany(cascade=CascadeType.ALL, mappedBy="account")
    @OrderBy("uploadtime DESC")
    public List<Picture> pictures;

    @ManyToOne(fetch = FetchType.LAZY, optional=true)
    @LazyToOne(LazyToOneOption.PROXY)
    @JoinColumn(name="favourite_picture_id")
    public Picture favourite_picture;

    /* Sometimes it is useful to get just the id, if possible without loading the entire entity */
    @OneToOne(fetch = FetchType.LAZY, optional=true)
    @Column(insertable=false, updatable=false)
    public String favourite_picture_id;
}

@Entity
public class Picture {
    @Id
    @GeneratedValue(generator="uuid")
    @GenericGenerator(name="uuid", strategy="uuid2")
    public String id;

    @ManyToOne(fetch = FetchType.LAZY)
    @JoinColumn(name="username")
    public Account account;

    /* This is never used, but I thought this might be required for the mapping? */
    @OneToOne(mappedBy="favourite_picture")
    public Account account_favourite_picture;


    public String mimetype;

    public Date uploadtime = new Date();

    @Column(length=1024 * 1024 * 4)
    public byte[] data;
}

我不知道为什么最喜欢的图片无法加载到图片列表中。任何建议都将受到高度赞赏:D

1 个答案:

答案 0 :(得分:2)

由于Picture拥有一个拥有它的特定Account,我很想在Picture类中包含一个名为isFavourite的布尔属性。这将大大简化映射。

您可以在帐户类上提供getFavourite方法,该方法通过查看图片列表并找到标记为收藏夹的图片来返回收藏的图片。