At the moment we have a many-to-many relationship between our entities, something like this:
@Entity
public class Episode {
@ManyToMany(cascade = CascadeType.ALL)
@JoinTable(
name = "episode_category",
joinColumns = { @JoinColumn(name = "episode_id") },
inverseJoinColumns = { @JoinColumn(name = "category_id") }
)
private List<Category> categories;
}
However, in some circumstances, this relationship is weighted using a probability (double between 0.0 and 1.0).
What would the best way to represent this?
On first thought, I imagined a Map relationship, something like:
@Entity
public class Episode {
@ManyToMany(cascade = CascadeType.ALL)
@JoinTable(
?
)
private Map<Category, Double> weightedCategories;
}
Is this possible in Hibernate?