How would you annotate this bean to be mapped in 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;
}
Each performanceValues entity has a unique map, and each map can be related to only one PerformanceValues (I guess this is a oneToOne relationship)
Thanks