我想知道为什么 Hibernate 没有将外键插入数据库。
我在 2 个类之间有 OneToMany 和 ManyToOne 关系。
@Entity
@Data
public class Bestelling {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@JoinColumn(name = "bestelling_id")
private long bestellingID;
private Date bestelDatum;
@ManyToOne
@JoinColumn(name = "account_id")
private Account accountID_fk;
@JoinColumn(name = "adres_id")
@OneToOne
private Adres afleverAdres;
@OneToMany(fetch = FetchType.LAZY, cascade = CascadeType.ALL, mappedBy = "bestelling")
private List<Bestellingsregel> bestellingsregels = new ArrayList<>();
}
和
@Entity
@Data
public class Bestellingsregel {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@JoinColumn(name = "bestellingsregel_id")
private long bestellingsregelID;
private int aantal;
private double prijs;
@ManyToOne(cascade = CascadeType.ALL)
@JoinColumn(name = "bestelling_id")
private Bestelling bestelling;
@OneToOne
@JoinColumn(name = "product_id")
private Product productID;
}
我正在使用 Postman 将数据插入我的 MySql 数据库:
{
"bestelDatum" : "2019-02-28",
"accountID_fk" : {
"accountID" : 1
},
"afleverAdres" : {
"adres_id" : 1
},
"bestellingsregels" : [
{ "aantal" : 5,
"prijs" : 100.50,
"productID" : { "productID" : 1 }
}
]
}
它正在向数据库中插入。唯一的问题是它没有在表 Bestellingsregel 中设置 bestelling_id。知道我在这里做错了什么吗?
提前致谢。
编辑:
我正在使用 Spring,并且 crud 函数位于此界面中:
public interface BestellingRepository extends JpaRepository<Bestelling, Long> {
}
慕斯709654
拉莫斯之舞
相关分类