我需要一个字段作为复合键的一部分,但我还需要与相应对象的多对一关系。这样的事情可能吗?
@Entity
public class Instrument {
@EmbeddedId
private InstrumentPk instrumentPk;
@ManyToOne;
private Transaction transaction;
}
@Embeddable
public class InstrumentPk {
private Integer productId;
private Integer transId;
}
斯蒂芬大帝
相关分类