What are you using for binding XML to Java? What are the better choice? I need speed in marshalling/unmarshalling. I have 20M xml-file. I need xml-to-java fastest framework.
|
closed as not constructive by Will♦ 18 hours ago
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
JAXB is the obvious choice. It's fairly simple, easy to understand, it's fast, and is built into Java6. |
|||||||||
|
|
XStream is really easy to use and I found it to be very fast: |
|||||||||||
|
|
Frameworks that modify bytecode, like jibx, are probably the fastet solution. But they are not hassle free. You will possibly need special plugins for you IDE that make the IDE understand what jibx does. If speed is not the only factor, I'd go for XStream as Brian suggested. It is really easy to use. |
|||
|
|
|
I have been using JIBX for XML to java binding and I'm happy with it. It also has a maven plug-in so that you can give the binding configuration on build time in order not to face any problems at runtime. As to its speed, comes second one after JAXB. |
|||
|
|