December 2013
Intermediate to advanced
424 pages
9h 7m
English
Camel provides an XML JSON Component that converts your data back and forth between XML and JSON in a single step, without an intermediate Java object representation. It provides a Camel Data Format that allows you to marshal (XML to JSON), or unmarshal (JSON to XML) your data.
This recipe will show you how to use the XML JSON Component to convert from XML to JSON, and back.
Java code for this recipe is located in the org.camelcookbook.transformation.xmljson package. Spring XML files are located under src/main/resources/META-INF/spring and prefixed with xmljson.
To use Camel's XML JSON Component, you need to add a dependency element for the camel-xmljson library, which provides an implementation for the ...
Read now
Unlock full access