JiBX 1.1 review

Download
by rbytes.net on

JiBX is a framework for binding XML data to Java objects

License: BSD License
File size: 0K
Developer: Dennis M. Sosnoski
0 stars award from rbytes.net

JiBX is a framework for binding XML data to Java objects. JiBX project lets you work with data from XML documents using your own class structures. The JiBX framework handles all the details of converting your data to and from XML based on your instructions.

JiBX is designed to perform the translation between internal data structures and XML with very high efficiency, but still allows you a high degree of control over the translation process.

How does it manage this? JiBX uses binding definition documents to define the rules for how your Java objects are converted to or from XML (the binding). At some point after you've compiled your source code into class files you execute the first part of the JiBX framework, the binding compiler.

This compiler enhances binary class files produced by the Java compiler, adding code to handle converting instances of the classes to or from XML. After running the binding compiler you can continue the normal steps you take in assembling your application (such as building jar files, etc.). You can also skip the binding compiler as a separate step and instead bind classes directly at runtime, though this approach has some drawbacks.

The second part of the JiBX framework is the binding runtime. The enhanced class files generated by the binding compiler use this runtime component both for actually building objects from an XML input document (called unmarshalling, in data binding terms) and for generating an XML output document from objects (called marshalling). The runtime uses a parser implementing the XMLPull API for handling input documents, but is otherwise self-contained.

What's New in This Release:
Added support for StAX parser input and StAX writer output.
Added method to get and set a user context object to both marshalling and
unmarshalling contexts. This user context object can be anything the user wants to have available for use with their own extension code. (JIBX-96)
Added < binding add-constructors="true" > option to generate no-argument
constructors where needed.

JiBX 1.1 search tags