Hi, I am getting Out of Memory error:
Memory Exception in thread "main" java.lang.OutOfMemoryError: Java heap space at org.apache.xerces.dom.CoreDocumentImpl.createElement(CoreDocumentImpl.java:564)
I have a standalone Java program which fetches data from DB and create an XML file using DOM. I get the above error if the data fetched is huge, in my case it is > 1,000,000 records.
I have defined 2GB as heap size while calling the Java class from unix.
I tried it with JAXB, but still do not any significant improvement.
Any suggestions how to improve the code.