JAXB Tip: One Line of Code to Marshall and Unmarshall XML
Javalobby
I wrote in a previous article how easy it is to translate Java object to/from XML, without adding exotic library dependencies to your project; recently I've going through the code of one of my colleague and I discovered that the 3 line necessary to marshal and un-marshal the XML can be shortened to a single line using the JAXB utility class: James...