ฉันเขียนตัวอย่างเด็กต้นแบบคนแรกของฉันด้วยโหมดไฮเบอร์เนตได้สำเร็จ หลังจากนั้นไม่กี่วันฉันก็เอามันอีกครั้งและอัปเกรดห้องสมุดบางส่วน ไม่แน่ใจว่าฉันทำอะไรไปบ้าง แต่ฉันไม่สามารถทำให้มันกลับมาทำงานได้อีก ใครจะช่วยฉันได้ไหมว่ามีอะไรผิดพลาดในรหัสที่ส่งคืนข้อความแสดงข้อผิดพลาดต่อไปนี้:
org.hibernate.PersistentObjectException: detached entity passed to persist: example.forms.InvoiceItem
at org.hibernate.event.def.DefaultPersistEventListener.onPersist(DefaultPersistEventListener.java:127)
at org.hibernate.impl.SessionImpl.firePersist(SessionImpl.java:799)
at org.hibernate.impl.SessionImpl.persist(SessionImpl.java:791)
.... (truncated)
การทำแผนที่ไฮเบอร์เนต:
<hibernate-mapping package="example.forms">
<class name="Invoice" table="Invoices">
<id name="id" type="long">
<generator class="native" />
</id>
<property name="invDate" type="timestamp" />
<property name="customerId" type="int" />
<set cascade="all" inverse="true" lazy="true" name="items" order-by="id">
<key column="invoiceId" />
<one-to-many class="InvoiceItem" />
</set>
</class>
<class name="InvoiceItem" table="InvoiceItems">
<id column="id" name="itemId" type="long">
<generator class="native" />
</id>
<property name="productId" type="long" />
<property name="packname" type="string" />
<property name="quantity" type="int" />
<property name="price" type="double" />
<many-to-one class="example.forms.Invoice" column="invoiceId" name="invoice" not-null="true" />
</class>
</hibernate-mapping>
แก้ไข: InvoiceManager.java
class InvoiceManager {
public Long save(Invoice theInvoice) throws RemoteException {
Session session = HbmUtils.getSessionFactory().getCurrentSession();
Transaction tx = null;
Long id = null;
try {
tx = session.beginTransaction();
session.persist(theInvoice);
tx.commit();
id = theInvoice.getId();
} catch (RuntimeException e) {
if (tx != null)
tx.rollback();
e.printStackTrace();
throw new RemoteException("Invoice could not be saved");
} finally {
if (session.isOpen())
session.close();
}
return id;
}
public Invoice getInvoice(Long cid) throws RemoteException {
Session session = HbmUtils.getSessionFactory().getCurrentSession();
Transaction tx = null;
Invoice theInvoice = null;
try {
tx = session.beginTransaction();
Query q = session
.createQuery(
"from Invoice as invoice " +
"left join fetch invoice.items as invoiceItems " +
"where invoice.id = :id ")
.setReadOnly(true);
q.setParameter("id", cid);
theInvoice = (Invoice) q.uniqueResult();
tx.commit();
} catch (RuntimeException e) {
tx.rollback();
} finally {
if (session.isOpen())
session.close();
}
return theInvoice;
}
}
Invoice.java
public class Invoice implements java.io.Serializable {
private Long id;
private Date invDate;
private int customerId;
private Set<InvoiceItem> items;
public Long getId() {
return id;
}
public Date getInvDate() {
return invDate;
}
public int getCustomerId() {
return customerId;
}
public Set<InvoiceItem> getItems() {
return items;
}
void setId(Long id) {
this.id = id;
}
void setInvDate(Date invDate) {
this.invDate = invDate;
}
void setCustomerId(int customerId) {
this.customerId = customerId;
}
void setItems(Set<InvoiceItem> items) {
this.items = items;
}
}
InvoiceItem.java
public class InvoiceItem implements java.io.Serializable {
private Long itemId;
private long productId;
private String packname;
private int quantity;
private double price;
private Invoice invoice;
public Long getItemId() {
return itemId;
}
public long getProductId() {
return productId;
}
public String getPackname() {
return packname;
}
public int getQuantity() {
return quantity;
}
public double getPrice() {
return price;
}
public Invoice getInvoice() {
return invoice;
}
void setItemId(Long itemId) {
this.itemId = itemId;
}
void setProductId(long productId) {
this.productId = productId;
}
void setPackname(String packname) {
this.packname = packname;
}
void setQuantity(int quantity) {
this.quantity = quantity;
}
void setPrice(double price) {
this.price = price;
}
void setInvoice(Invoice invoice) {
this.invoice = invoice;
}
}
แก้ไข:ออบเจ็กต์ JSON ที่ส่งจากไคลเอนต์:
{"id":null,"customerId":3,"invDate":"2005-06-07T04:00:00.000Z","items":[
{"itemId":1,"productId":1,"quantity":10,"price":100},
{"itemId":2,"productId":2,"quantity":20,"price":200},
{"itemId":3,"productId":3,"quantity":30,"price":300}]}
แก้ไข:รายละเอียดบางส่วน:
ฉันได้พยายามบันทึกใบแจ้งหนี้โดยทำตามสองวิธี:
ประดิษฐ์วัตถุ json ที่กล่าวถึงข้างต้นด้วยตนเองและส่งต่อไปยังเซสชันใหม่ของเซิร์ฟเวอร์ ในกรณีนี้ไม่มีกิจกรรมใด ๆ เกิดขึ้นก่อนที่จะเรียกวิธีบันทึกดังนั้นจึงไม่ควรมีเซสชันที่เปิดอยู่ยกเว้นเซสชันที่เปิดในวิธีบันทึก
โหลดข้อมูลที่มีอยู่โดยใช้เมธอด getInvoice และส่งผ่านข้อมูลเดียวกันหลังจากลบค่าคีย์ เช่นกันฉันเชื่อว่าควรปิดเซสชันก่อนที่จะบันทึกเนื่องจากมีการทำธุรกรรมในเมธอด getInvoice
ในทั้งสองกรณีฉันได้รับข้อความแสดงข้อผิดพลาดเดียวกันที่บังคับให้ฉันเชื่อว่ามีบางอย่างผิดปกติกับไฟล์การกำหนดค่าไฮเบอร์เนตหรือคลาสเอนทิตีหรือวิธีบันทึก
โปรดแจ้งให้เราทราบหากฉันควรให้รายละเอียดเพิ่มเติม