Java JAXB Pros/Cons and Documentation - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T02:16:51Zhttp://stackoverflow.com/feeds/question/371705http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/371705/java-jaxb-pros-cons-and-documentation5Java JAXB Pros/Cons and DocumentationMartin York2008-12-16T15:51:20Z2009-06-09T07:36:05Z
<p>It's been a while since I used Java in anger so please forgive me if this is silly.</p>
<p>I have just got started on a Java project where we are using JAXB to de-serializing an incoming XML string (from Jetty Server). The project is only using JAXB for this situation.</p>
<p>What are the alternatives to JAXB?<br>
What are pros/cons of JAXB to these alternatives<br></p>
<p>I have done some googling and found lots of reference material, but is there a definitive source that is the goto place for JAXB questions or do people just see what people are doing and interpret from there.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/371705/java-jaxb-pros-cons-and-documentation/372049#3720491Answer by Chris Dail for Java JAXB Pros/Cons and DocumentationChris Dail2008-12-16T17:34:50Z2008-12-16T17:34:50Z<p>I have been using JAXB for a few projects. I think the best thing about it is it's integration with newer technologies like JAX-WS and JAX-RS (JSR 311, Restful spec).</p>
<p>If you are handling incoming XML as a String with Jetty, I would seriously consider looking into the JAX-RS. It handles all of the JAXB binding stuff for you and you just work with an object.</p>
<p>I've been pretty happy with JAXB through CXF for both REST style and SOAP web services.</p>
http://stackoverflow.com/questions/371705/java-jaxb-pros-cons-and-documentation/372611#3726110Answer by Flynn81 for Java JAXB Pros/Cons and DocumentationFlynn812008-12-16T20:38:34Z2008-12-16T20:38:34Z<p>For alternatives to JAXB you might want to check out XFire (<a href="http://xfire.codehaus.org/" rel="nofollow">http://xfire.codehaus.org/</a>) or Axis2 (<a href="http://ws.apache.org/axis2/" rel="nofollow">http://ws.apache.org/axis2/</a>). Those seem to be 2 popular alternatives, and I believe both are now JAX-WS complaint.</p>
http://stackoverflow.com/questions/371705/java-jaxb-pros-cons-and-documentation/373195#3731955Answer by Dave Ray for Java JAXB Pros/Cons and DocumentationDave Ray2008-12-16T23:45:08Z2008-12-16T23:45:08Z<p>I've found JAX-B pretty useful and actually like it better than many of the alternatives, especially if I'm starting from scratch and generating a schema from Java objects rather than Java objects from a schema. </p>
<p>In my experience, for whatever reason, I've found good documentation hard to come by from just Google searches. The best electronic documentation is provided in the JAX-B download where you'll also find numerous examples. "<a href="http://rads.stackoverflow.com/amzn/click/0130449687" rel="nofollow">SOA Using Java Web Services</a>" also has a good overview.</p>
<p>As for alternatives, there is:</p>
<ul>
<li><a href="http://xstream.codehaus.org/" rel="nofollow">XStream</a></li>
<li><a href="http://www.castor.org/xml-framework.html" rel="nofollow">Castor</a></li>
</ul>
<p>and probably several more.</p>
http://stackoverflow.com/questions/371705/java-jaxb-pros-cons-and-documentation/374655#3746552Answer by Nik for Java JAXB Pros/Cons and DocumentationNik2008-12-17T14:19:09Z2008-12-17T14:19:09Z<p>XML Bean comes to mind (<a href="http://xmlbeans.apache.org/" rel="nofollow">http://xmlbeans.apache.org/</a>)</p>
<p>One of the PROS about JAXB is that it now comes bundle in with JDK6. The generate output is really tight and efficient. We are currently converting all our XML Bean implementation to use JAXB 2. The big CONS that we have seen is the lack of XSD related operations.</p>
http://stackoverflow.com/questions/371705/java-jaxb-pros-cons-and-documentation/374664#3746640Answer by Milhous for Java JAXB Pros/Cons and DocumentationMilhous2008-12-17T14:21:11Z2008-12-17T14:21:11Z<p><a href="http://xstream.codehaus.org/" rel="nofollow">XStream</a> is really good if you have an object model for the xml you are trying to parse.</p>
http://stackoverflow.com/questions/371705/java-jaxb-pros-cons-and-documentation/375501#3755011Answer by Pete for Java JAXB Pros/Cons and DocumentationPete2008-12-17T18:15:07Z2008-12-17T18:15:07Z<p>I have tried many of the listed suggestions and prefer Simple to them all. It is relatively new in the overall sense yet mature and stable, and seems to have taken a lot of the complaints from other XML frameworks into account. I highly suggest reading the front page and if possible giving it a quick proof of concept prototype in your project.</p>
<p><a href="http://simple.sourceforge.net/" rel="nofollow">http://simple.sourceforge.net/</a></p>
http://stackoverflow.com/questions/371705/java-jaxb-pros-cons-and-documentation/393419#3934190Answer by duffymo for Java JAXB Pros/Cons and Documentationduffymo2008-12-26T02:46:03Z2008-12-26T02:46:03Z<p>Other alternatives could be Castor, JibX, XMLBeans, or JDOM.</p>
http://stackoverflow.com/questions/371705/java-jaxb-pros-cons-and-documentation/968674#9686740Answer by Silent Warrior for Java JAXB Pros/Cons and DocumentationSilent Warrior2009-06-09T07:36:05Z2009-06-09T07:36:05Z<p>Actually I had used Castor. It is better than JAXB in case of xml binding. It provides functionality to map your existing java beans.</p>