If the property is annotated with the following the contents will be mapped as DOM nodes:
@XmlAnyElement
If the lax=true flag is set then known elements will be converted to domain objects:
@XmlAnyElement(lax=true)
For more information on @XmlAnyElement see:
UPDATE #1
With lax=true you can get a mix of domain objects and DOM nodes. The following is from the java docs:
When true
If true, when an element
matches a property marked with
XmlAnyElement is known to JAXBContext
(for example, there's a class with
XmlRootElement that has the same tag
name, or there's XmlElementDecl that
has the same tag name), the
unmarshaller will eagerly unmarshal
this element to the JAXB object,
instead of unmarshalling it to DOM.
Additionally, if the element is
unknown but it has a known xsi:type,
the unmarshaller eagerly unmarshals
the element to a JAXBElement, with the
unknown element name and the
JAXBElement value is set to an
instance of the JAXB mapping of the
known xsi:type.
As a result, after the unmarshalling,
the property can become heterogeneous;
it can have both DOM nodes and some
JAXB objects at the same time.
UPDATE #2
To ultimately solve the problem:
- Since it is possible for that property to contain a DOM node, your code should account for this possibility by doing some type checking.
- To reduce the amount of DOM nodes received you need to associate the possible root elements of those fragments with Java classes. This is done by annotating classes with @XmlRootElement(name="foo", namespace="bar"), or with @XmlElementDecl.
Check out my blog for an example: