我有2個表客戶和客戶歷史。 customhistory具有引用客戶customerId的外鍵customerId。在由JPA生成的實體中,我在customerhistory類中有一個客戶對象,而我只想在consumerhistory表中保存customerId如何在JPA中保存外鍵實體
我得到正確的customerId,但是當我想保存屬性customerId時,我只有客戶與我的對象,但在自動生成的實體類的consumerhistory
@Entity
public class Customerhistory implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
private int primarykeyId;
//bi-directional many-to-one association to Customer
@ManyToOne
@JoinColumn(name="CustomerId")
private Customer customer;
沒有客戶ID如上圖所示,我不以實體customerHistory有客戶ID和我在一起。如何保存?
我可以在一個單一的做到這一點交易? – Ced
是的,你可以在單個交易中完成。 – Ced