Razvi
Razvi

Reputation: 2818

JAXB take all content of element (both tags and text)

I have an XML of a forml like this: <content><p>Text</p><p>Text</p></content> How can I map with JAXB annotations all the content to a String value.

public class Content {
    String value;
}

So Content.value = "<p>Text</p><p>Text</p>"?

Upvotes: 4

Views: 1590

Answers (1)

bdoughan
bdoughan

Reputation: 149017

You can use the @XmlAnyElement annotation and specify a DOMHandler to convert the DOM fragment to/from a String value.

For a Complete Example

Upvotes: 4

Related Questions