We have some entities with JAXB annotations so that we can unmarshal some 'incoming' XML to pojo. We now need to marshal the pojos to XML but to a different format than the incoming xml. What's the best way of doing this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
My solution is to use an extra "version" field in the JAXB object to distinguish multiple versions of bindings. Usually, I use enum as its type, i.e., enum Version {V1, V2, ...}; So for a specific XML element field, I define the getField() method as
Before marshalling, one just needs to set the version value to the desired enum value, and JAXB will take care of the rest. |
|||
|
|