Java JAXB Pros/Cons and Documentation - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T02:16:51Z http://stackoverflow.com/feeds/question/371705 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/371705/java-jaxb-pros-cons-and-documentation 5 Java JAXB Pros/Cons and Documentation Martin York 2008-12-16T15:51:20Z 2009-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#372049 1 Answer by Chris Dail for Java JAXB Pros/Cons and Documentation Chris Dail 2008-12-16T17:34:50Z 2008-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#372611 0 Answer by Flynn81 for Java JAXB Pros/Cons and Documentation Flynn81 2008-12-16T20:38:34Z 2008-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#373195 5 Answer by Dave Ray for Java JAXB Pros/Cons and Documentation Dave Ray 2008-12-16T23:45:08Z 2008-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#374655 2 Answer by Nik for Java JAXB Pros/Cons and Documentation Nik 2008-12-17T14:19:09Z 2008-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#374664 0 Answer by Milhous for Java JAXB Pros/Cons and Documentation Milhous 2008-12-17T14:21:11Z 2008-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#375501 1 Answer by Pete for Java JAXB Pros/Cons and Documentation Pete 2008-12-17T18:15:07Z 2008-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#393419 0 Answer by duffymo for Java JAXB Pros/Cons and Documentation duffymo 2008-12-26T02:46:03Z 2008-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#968674 0 Answer by Silent Warrior for Java JAXB Pros/Cons and Documentation Silent Warrior 2009-06-09T07:36:05Z 2009-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>