There is a really huge data set that being expected to be inserted into an xml. I decided to use jaxb.xml.bind.Marshaller.
Because of that huge data, I have to select that data from db by pagination.
I mean, for instance, I have to get 10.000 row per each process from db and immediately write to xml, and this process continue up till the 3million rows will be written.
The most crucial restriction is, I have to use only one xml file. In other words, I have to marshall this huge data into only one xml file. Therefore, I would like to know if it is possible marshal data into one xml, and then reuse and update the same xml bu marshalling again.
Thanks a lot.