懶洋洋地初始化角色的集合,我想這個代碼未能在休息web服務
@GET
@Produces("application/xml")
public Customer getMsg() {
Customer cus = em.find(Customer.class,1);
return cus;
}
Customer類具有一個與地址實體一對多的關係。 但當我試圖從我的ajax客戶端調用ws它給我這個錯誤?如何解決這個問題。 應用程序在jboss-eap-6.2上運行並且該類是無狀態bean。
JBWEB000065: HTTP Status 500 - org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role: org.test.Customer.addresslist, could not initialize proxy - no Session
當我使用eager方法它給我javax.xml.bind.MarshalException - 與鏈接的異常。 我不想要custmers的地址。只有我想要檢索客戶實體。 – Dilis