(De)Serialize mixed content with jackson xml?
问题 With all the searching that I've done, I understand that serializing/deserializing xml with jackson that has mixed content is problematic. Does anybody know of a way to handle the following xml using Java? <xmlsample> <title>Yada yada yada <a href=\"component:tcm:757-228001\" id=\"Link_1492103133595\" title=\"yada\" name=\"Link_1492103133595\" xmlns=\"xhtml\">yada</a> yada</title> <link>test</link> </xmlsample> I am using the following POJO: @JacksonXmlRootElement(localName="xmlsample")