vote up 5 vote down star
3

It's been a while since I used Java in anger so please forgive me if this is silly.

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.

What are the alternatives to JAXB?
What are pros/cons of JAXB to these alternatives

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.

Thanks.

flag

8 Answers

vote up 5 vote down check

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.

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. "SOA Using Java Web Services" also has a good overview.

As for alternatives, there is:

and probably several more.

link|flag
vote up 1 vote down

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).

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.

I've been pretty happy with JAXB through CXF for both REST style and SOAP web services.

link|flag
vote up 0 vote down

For alternatives to JAXB you might want to check out XFire (http://xfire.codehaus.org/) or Axis2 (http://ws.apache.org/axis2/). Those seem to be 2 popular alternatives, and I believe both are now JAX-WS complaint.

link|flag
vote up 2 vote down

XML Bean comes to mind (http://xmlbeans.apache.org/)

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.

link|flag
Another big PROS, that I've discovered with JAXB, is that is now the defacto for all JAX-WS bindings. It's always nice to not have to add tons of 3rd party extension to your project; Most of the other XML streaming technology will ask you to add Apache Commons. – Nik May 22 at 19:35
The last time I used XML Beans it leaked roughly 100% of instantiated classes. When trying to find out why I had a look at some of the wildest source code I've seen, so we stopped using it. That's 2-3 years ago, so it might be better now. – Peter Becker Oct 30 at 4:27
vote up 0 vote down

XStream is really good if you have an object model for the xml you are trying to parse.

link|flag
XStream can't deal properly with namespaces, though. I'd consider it a major drawback. – duffymo Dec 26 '08 at 2:44
vote up 1 vote down

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.

http://simple.sourceforge.net/

link|flag
vote up 0 vote down

Other alternatives could be Castor, JibX, XMLBeans, or JDOM.

link|flag
vote up 0 vote down

Actually I had used Castor. It is better than JAXB in case of xml binding. It provides functionality to map your existing java beans.

link|flag

Your Answer

Get an OpenID
or

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