Open
Description
If there are HTML tags within XML tags, the Jackson XML parser will assign incorrect values to the content.


@Data
public static class Abstract {
@JacksonXmlElementWrapper(useWrapping = false)
@JacksonXmlProperty(localName = "AbstractText")
private List<AbstractText> abstractTextList;
}
@Data
public static class AbstractText {
@JacksonXmlProperty(isAttribute = true)
private String Label;
@JacksonXmlProperty(isAttribute = true, localName = "NlmCategory")
private String category;
@JacksonXmlText
private String value;
}