Is there a (preferably free) Java analogue of .NET's XML serialization?

link|improve this question

feedback

9 Answers

up vote 29 down vote accepted

The "Official" Java API for this is now JAXB - Java API for XML Binding. The reference implementation lives at http://jaxb.dev.java.net/

link|improve this answer
That's right, JAXB is definitely the best option! – ivan_ivanovich_ivanoff Apr 9 '09 at 16:55
feedback

XStream is pretty good at serializing object to XML without much configuration and money! (it's under BSD license).

We used it in one of our project to replace the plain old java-serialization and it worked almost out of the box.

link|improve this answer
1  
Very useful, it can have problems on complecated tree structures such as JGraph with non string node objects though. – mikek3332002 Jun 3 '10 at 4:22
Simpler and better then other solutions – daitangio Oct 22 '10 at 15:57
feedback

You may want to look at Simple, its the closest thing I've found to the System.Xml.Serialization in .Net.

link|improve this answer
It does however require mapping annotations for each field. – mP. Apr 14 '11 at 5:36
Not true, I doesn't require. You can change default behaviour and it will use only present fields. – damluar Apr 24 '11 at 20:14
feedback

XMLBeans works great if you have a schema for your XML. It creates Java objects for the schema and creates easy to use parse methods.

link|improve this answer
feedback

JAXB is part of JDK standard edition version 1.6+. So it is FREE and no extra libraries to download and manage. A simple example can be found here

XStream seems to be dead. Last update was on Dec 6 2008. Simple seems as easy and simpler as JAXB but I could not find any licensing information to evaluate it for enterprise use.

link|improve this answer
2  
XStream is not dead, it is just mature and stable -- meaning there isn't much to add to core functionality. Same is actually true for JAXB reference implementation, not much activity for past couple of years. – StaxMan Jan 7 '11 at 22:14
feedback

If you're talking about automatic XML serialization of objects, check out Castor:

Castor is an Open Source data binding framework for Java[tm]. It's the shortest path between Java objects, XML documents and relational tables. Castor provides Java-to-XML binding, Java-to-SQL persistence, and more.

link|improve this answer
feedback

Usually I use jaxb or XMLBeans if I need to create objects serializable to XML. Now, I can see that XStream might be very useful as it's nonintrusive and has really simple api. I'll play with it soon and probably use it. The only drawback I noticed is that I can't create object's id on my own for cross referencing.

@Barak Schiller
Thanks for posting link to XStream!

link|improve this answer
Problem is jaxb and xmlbeans require a mapping schema and arent auto ... – mP. Apr 14 '11 at 3:53
feedback

Don't forget JiBX.

link|improve this answer
feedback

if you want a structured solution (like ORM) then JAXB2 is a good solution.

If you want a serialization like DOT NET then you could use Long Term Persistence of JavaBeans Components

The choice depends on use of serialization.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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