I have an object graph that contains a cycle. How do I get JAXB to handle this? I tried using the @XmlTransient annotation in the child class but the JAXB mar
@XmlTransient
just look at this tutorial : Mapping cyclic references to XML by jaxb
I use it an it works well :)