I cannot achieve to unmarshall an XML without knowing the root element. eg.
<foo>
<bar/>
</foo>
or
<bar>
<bar/>
</bar>
etc...
I want to map the unmarshalling result on a class like :
// @XmlRootElement ??
public class Container
implements Serializable
{
private Bar bar;
}
I am always required to fix the @XmlRootElement
.
I searched how to set the @XmlRootElement at runtime without success. Any idea?
I am in Spring Batch context and I can use the unmarshaller of my choice.
Note : I cannot use @XmlElementDecl
or an ObjectFactory
as shown here because I don't know the name of the possibles root names.
Adapted his approach: https://stackoverflow.com/a/33824472/181336
It works!