この Bean が hibernate にマップされるようにどのように注釈を付けますか?
@Entity
public class PerformanceValues implements Serializable{
private static final long serialVersionUID = 1234850675335166109L;
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
//key is mass, value is distance needed
private Map<Integer, Integer> massToDist;
}
各 performanceValues エンティティには一意のマップがあり、各マップは 1 つの PerformanceValues にのみ関連付けることができます (これは oneToOne の関係だと思います)。
ありがとう