Make JAXB go faster
I have a 8 Meg file. Marshalling using JAXB takes 1082ms, using DOM takes 862ms, using SAX takes 438ms. This is using all defaults with JDK 1.6, no extra configuration such as using woodstox is used. In an effort, to get better performance from JAXB, I try to make it use SAX parsing by doing... FileReader fr = new FileReader("myfile.xml"); JAXBContext jc = JAXBContext.newInstance(MyObjectList.class); Unmarshaller unmarshaller = jc.createUnmarshaller(); XMLInputFactory xmlif = XMLInputFactory.newInstance(); XMLEventReader xmler = xmlif.createXMLEventReader(fr); long beginTime = System