Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have the following three classes [Promotion, Product and Image]. Promotion has an Image. Product has list/collection of Image's. In the future there may be new classes that also has Image or Collection of Image's.

I would like to put all images in the same image table (eg:: image_table). It means that the image of Promotion and the collection of images in Product are all going to go into the same table.

I can't put for instance two @OneToMany/@ManyToOne annotations in Image class because then there will be two different foreign keys (Promotion_FK and Product_FK) in Image table (eg:: image_table). In the future if there are more classes that has image then I have to add additional @OneToMany/@ManyToOne annotations.

  1. Is there a way to map this feature in Hibernate?

  2. If my design is not good, in the real world how do they store images that belongs to different classes in the same table?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
318 views
Welcome To Ask or Share your Answers For Others

1 Answer

Try to use Unidirectional mapping then

e.g. Promotion having Image, Product having Image's, but not Vice Versa


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...