|
Java to XML and Back Again with Castor XML
by Alexander Prohorenko and Olexiy Prohorenko
The market has a lot of tools for combining Java with XML. Even Sun jumped on the bandwagon, introducing JAXB (Java Architecture for XML Binding), which since October 2004, has been included in the Java Web Services Developer Pack (JWSDP). This tool is still being actively developedat time of writing, JAXB 2.0 Early Access 3 is already available.
Another popular framework is The Castor Project. This open source data binding framework claims to be "the shortest path between Java objects, XML documents, and relational tables." It provides Java-to-XML binding and Java-to-SQL persistence. There's been alot written about JAXB, despite the fact that Castor is supposed to be more flexible and a bit more powerful. Despite of the fact that I do not share this opinion, I still believe it's a great tool.
This article uses Castor to illustrate the basic steps between Java class transformation to XML and back again. This is a relatively simple task so the code won't be complicated at all.
You'll basically be writing a sample Java POJO class and an accompanying testing application, which will transform POJO into XML (marshallize) and then restore it back (unmarshallize).
Requirements
While you don't need any special knowledge to understand and run everything described here, you will need to have some hands-on experience with developing Java applications.
You will need only the Castor framework to build the code:
Keep in mind that you will need to have the library itself and any dependencies it may require:
You will use Ant for building and running:
New on the Java Boutique:
New Review:
Time Management Made Easy with the Quartz Enterprise Job Scheduler
Why not just use the Java timer API? This open source scheduling
API boasts simplicity, ease-of-integration, a well-rounded feature
set, and it's free!
New Applet:
Reverse Complement
Reverse Complement is a simple applet that converts DNA or RNA
sequences into three useful formats.
Elsewhere on internet.com:
WebDeveloper Java
Lots of Java information on webdeveloper.com
WDVL Java
Thorough Java resource at the Web Developer's Virtual Library.
ScriptSearch Java
Hundreds of free Java code files to download.
jGuru: Your View of the Java Universe
Customizable portal with online training, FAQs, regular news updates, and tutorials.
|