0

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

将其映射到休眠已被证明是困难的。我的应用程序有一个屏幕,其中显示了所有用户图片的列表,并且还显示了他们最喜欢哪一张。但是,当应用程序加载图片时,不会加载最喜欢的单张图片。在 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

4

1 回答 1

2

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

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

于 2012-08-26T14:31:57.060 回答