0

我正在尝试实现一个解决方案,它在表 Document 和 DocumentField 之间具有关系数据库逻辑。此解决方案将用作 Web 服务并由客户端使用。我从我的 Web 服务客户端收到以下异常:

Exception: javax.xml.ws.WebServiceException: javax.xml.bind.MarshalException
 - with linked exception:
[com.sun.istack.SAXException2: A cycle is detected in the object graph. This will cause infinitely deep XML: com.bla.bla.ws.Document@115cfb9 -> com.bla.bla.ws.DocField@94e6ee -> com.bla.bla.ws.Document@115cfb9]

为了解决这个问题,我添加了@XmlTransient 注解:

文档:

@Entity(name = "Document")
@Table(name = "DOCUMENT", schema = "DOCUMENT")
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Document extends BasicObject implements Serializable {

     private static final long serialVersionUID = -5274375009324738532L;

    @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.EAGER, mappedBy="doc") 
    @XmlTransient   
    private List<DocField> extraInfo;

文档字段:

public class DocField extends BasicObject implements Serializable { 

    private static final long serialVersionUID = -7403660716697161123L;

   @ManyToOne
   @JoinColumn(name="DOC_ID")   
   @XmlTransient
   private Document doc;

但是现在我无法使用以下代码片段从客户端访问我的 docField:

Document testDoc = new Document ();
DocField testDocField = new DocField();
testDoc.getDocField.add(testDocField);

我想我误解了这种解决方案的一些观点。任何人都可以对此提供一些解释吗?还是任何外部资源?

4

0 回答 0