Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What are you using for binding XML to Java? What are the better choice? I need speed in marshalling/unmarshalling. I have 20M xml-file. I need xml-to-java fastest framework.

share|improve this question
1  
possible duplicate of Java XML Binding – Valentin Rocher Jan 27 '11 at 14:02
@vtd-xml-author - That article incorrectly states that JAXB and Castor require an XML schema. They have the ability to generate an object model from an XML schema, but you can also start with objects and map them to XML without a schema. – Blaise Doughan Jan 28 '11 at 16:17

closed as not constructive by Will 18 hours ago

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

4 Answers

JAXB is the obvious choice. It's fairly simple, easy to understand, it's fast, and is built into Java6.

share|improve this answer
1  
There are also multiple implementations of JAXB: Metro (the reference implementation), EclipseLink MOXy, Apache JaxMe, etc. – Blaise Doughan Jan 27 '11 at 16:12
@Blaise: Indeed. However, bundling a 3rd-party one detracts somewhat from the convenience. – skaffman Jan 27 '11 at 16:18
The ability to choose between implementations protects the developer from vendor lock in. Also individual implementations offer extensions such as MOXy's XPath based mapping: bdoughan.blogspot.com/2010/09/… – Blaise Doughan Jan 27 '11 at 16:23

XStream is really easy to use and I found it to be very fast:

http://xstream.codehaus.org/tutorial.html

share|improve this answer
1  
Check out: bdoughan.blogspot.com/2010/10/… – Blaise Doughan Jan 27 '11 at 16:10
Interesting, a very useful article there Blaise. I would certainly consider JAXB for future needs. Do you have one covering the parsing side, as well as this output one? – Brian Jan 27 '11 at 16:41
The following articles demonstrates reading XML with JAXB: bdoughan.blogspot.com/2010/09/… – Blaise Doughan Jan 27 '11 at 16:53
Cool, thanks, I'll bear this in mind – Brian Jan 27 '11 at 16:55

Frameworks that modify bytecode, like jibx, are probably the fastet solution. But they are not hassle free. You will possibly need special plugins for you IDE that make the IDE understand what jibx does.

If speed is not the only factor, I'd go for XStream as Brian suggested. It is really easy to use.

share|improve this answer

I have been using JIBX for XML to java binding and I'm happy with it. It also has a maven plug-in so that you can give the binding configuration on build time in order not to face any problems at runtime. As to its speed, comes second one after JAXB.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.