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

In Java for XML marshalling/unmarshalling one can use JAXB, JIBX, CASTOR, ADB etc. But out of these which is most generic & commonly used? Or is there any other utility available?

share|improve this question

2 Answers

The standard is the JAXB (JSR 222), and the famous project with this name is the reference implementation. Unlike JAXB 1.0, JAXB 2.0 RI is quite good, and I've used it a lot. Other libraries implements the JAXB standard (I think tha Castor and JiBX, but I have no experience with them).

I've also use XStream, which was very easy and simple - it has a proprietary API though.

I don't know of any benchmark other than https://bindmark.dev.java.net/old-index.html - notice it is a 4 year old one. perhaps you can take it's ideas or any usable code it may have and run some tests yourself.

share|improve this answer
In some very special cases JAXB's behaviour is rather unpredictable, but on the whole it is very good and useful – Bozho Nov 23 '09 at 7:20
1  
What are these special cases? – David Rabinowitz Nov 23 '09 at 8:37
The worst I've had with JAXB was how it actually crashed on some malformed XML (it still throws an exception, but not a nice XmlSchemaViolation, more like a SecurityAccessViolation somewhere, names made up cause I can't remember the originals) – wds Nov 23 '09 at 10:59
EclipseLink JAXB (MOXY) also implements the JAXB standard, eclipse.org/eclipselink/moxy.php – Blaise Doughan Jul 15 '10 at 19:14

I personally use XMLBeans. I like it more than JAXB (and I am biased in favour of things from Sun since they should be more "standard"). I cannot speak to the commonly used part of it though.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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