netbeans 8.1ではエンティティとjpaコントローラを生成しました。 私は親エンティティと1対1の関係を持つ子を持っています。 子エンティティが主キーが親への外部キーに等しいがあります。これを避けるには IllegalOrphanException: This Parent (model.Parent[ id=1 ]) cannot be destroyed since the Child
2つのエンティティがありますJPAマッピングの class A {
Long idA;
B fieldB;
}
class B {
Long idA;
String something;
}
orm.xmlは Aを保存する際の要件は、私はからBへのIDAをpropogateするために実装する必要があり <entity class="A">
JAX-RSとMySqlデータベース(JPA)を使用してAPIを構築しています。 public Customer validateCustomer(Customer customer) {
//get the customer from the database
Query q = em.createQuery("SELECT c from Customer c WHERE