This is the complete source code for the following blog post:
In this example EclipseLink JAXB (MOXy)'s @XmlPath and external binding file extensions are used to map a single object model to two different XML schemas. To make the example more "real", the XML data will come from two different services that provide weather information: Google and Yahoo.
You can compile the example code using the following command. Maven will automatically fetch the required dependencies.
mvn compile
You can run the example using the following commands.
mvn exec:java -Dexec.mainClass="blog.weather.GoogleDemo"
mvn exec:java -Dexec.mainClass="blog.weather.YahooDemo"