文字列がマップされたエンティティのキーではない場合、マップを永続化するのに役立ちますか? 例えば:
class A {
@Id
long id;
String code;
}
class B {
@OneToMany(cascade = CascadeType.ALL, orphanRemoval = true, fetch = FetchType.EAGER)
@What magical combination of JPA annotations should I use here?!
Map<String,A> mapAByCode;
}
{@JoinTable,@MapKeyColumn,@JoinColumn,@JoinTable} アノテーションの多くの組み合わせを試しましたが成功しませんでした。気が狂いそうです...
ありがとう!