Is there a (preferably free) Java analogue of .NET's XML serialization?
|
feedback
|
|
The "Official" Java API for this is now JAXB - Java API for XML Binding. The reference implementation lives at http://jaxb.dev.java.net/ | ||||
|
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. | |||||||
feedback
|
|
You may want to look at Simple, its the closest thing I've found to the System.Xml.Serialization in .Net. | |||||
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. | |||
|
feedback
|
|
JAXB is part of JDK standard edition version 1.6+. So it is XStream seems to be dead. Last update was on Dec 6 2008.
| |||||
feedback
|
|
If you're talking about automatic XML serialization of objects, check out Castor:
| |||
|
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 | |||
|
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. | ||||
|
feedback
|