|
The foreign key is not generated for @ElementCollection, when additional @CollectionTable is specified, with a @JoinColumn:
@ElementCollection(fetch = FetchType.LAZY)
@CollectionTable(
name = "posts_tags",
joinColumns = {
@JoinColumn(name = "my_id")
}
)
private List<String> tags;
Workaround: not to use the @CollectionTable annotation.
|