Can I force JAXB not to convert " into ", for example, when marshalling to XML?
- by Elliot
I have an Object that is being marshalled to XML using JAXB. One element contains a String that includes quotes ("). The resulting XML has " where the " existed.
Even though this is normally preferred, I need my output to match a legacy system. How do I force JAXB to NOT convert the HTML entities?
--
Thank you for the replies. …