The following is based on an answer given by Markus to a similar question:
input.xml
We will use an input document with many levels of nesting.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<foo>
<foo>
<foo>
<foo>
<foo>
<foo>
<foo>
<foo>
<foo>
<foo/>
</foo>
</foo>
</foo>
</foo>
</foo>
</foo>
</foo>
</foo>
</foo>
Foo
The following is the domain model that we will map to the XML.
package forum601143;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class Foo {
private Foo foo;
public Foo getFoo() {
return foo;
}
public void setFoo(Foo foo) {
this.foo = foo;
}
}
Demo
In our demo code we will unmarshal the document and then marshal it back out. I have specified that the Marshaller should format the output.
package forum601143;
import java.io.File;
import javax.xml.bind.*;
public class Demo {
public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(Foo.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();
File xml = new File("src/forum601143/input.xml");
Foo foo = (Foo) unmarshaller.unmarshal(xml);
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(foo, System.out);
}
}
Output - JAXB RI
Indenting in the RI occurs modulo 8 so we see the following output. There isn't a "fix" for this issue as the JAXB RI is acting as it was designed.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<foo>
<foo>
<foo>
<foo>
<foo>
<foo>
<foo>
<foo>
<foo>
<foo/>
</foo>
</foo>
</foo>
</foo>
</foo>
</foo>
</foo>
</foo>
</foo>
Output - EclipseLink JAXB (MOXy)
Using another JAXB (JSR-222) implementation such as MOXy does not demonstrate this behaviour. To use MOXy as your JAXB provider see: http://blog.bdoughan.com/2011/05/specifying-eclipselink-moxy-as-your.html.
<?xml version="1.0" encoding="UTF-8"?>
<foo>
<foo>
<foo>
<foo>
<foo>
<foo>
<foo>
<foo>
<foo>
<foo/>
</foo>
</foo>
</foo>
</foo>
</foo>
</foo>
</foo>
</foo>
</foo>
OutputStream,XMLStreamWriter)? – Blaise Doughan Aug 14 '12 at 9:08