Editing to specify more clearly the scenario.
I have to write a xml file, the info comes from several beans (not even whole bean, jsut subset of some of them), some of the beans contain lists etc. So I cannot just give xstream one root bean and let it write the xml. Also some formatting might need to fulfill some conditions, but the previous issue is the one
Right now I am using JDOM to create the doc in memory, and eventually I use a XMLOutputter to write the doc to a file.
But the beans I want to write can have very large lists of other beans etc, and the memory used can be quite high.
So I suspect there should be a better way in terms of memory? I already create the xml for some beans inside the larger bean with xstream and append them as Elements to the JDOM.
I was hoping the same way its more memory efficient to parse xml using a pull parser, the same could be apply to writing xml.