I have a fairly large repetitive XML to create using JAXB. Storing the whole object in the memory then do the marshaling takes too much memory. Essentially, my XML looks lik
If you don't specifiy a namespace JaxB will not write one.
Yout could use Stax on a Stream, if your strcuture is not to complicated.