2
votes
1answer
169 views

Nested elements with JAXB where element holds attribute and element value at the same time

Environment: JAXB 2.1.2 with EclipseLink MOXy Requirement: I would like to get such an XML when marshalled: <?xml version="1.0" encoding="UTF-8"?> <root id="id123"> ...
1
vote
1answer
129 views

EclipseLink MOXy JSON Serialization

I have got a sample class: class Zoo { public Collection<? extends Animal> animals; } When serialized with MOXy, I am getting: { "bird": [ { "name": "bird-1", ...
1
vote
1answer
58 views

EclipseLink MOXy @XmlPath is returning the incorrect data for contains

I am attempting to unmarshal an XML data stream with EclipseLink MOXy with an XPath using the contains function. When I apply the sample XPath directly to the sample XML data stream I get the ...
2
votes
1answer
734 views

Is it possible to use @XmlInverseReference where object and property are of same type?

I'm using the MOXy JAXB implementation and make quite extensive use of the @XmlInverseReference annotation. However, I've recently encountered a scenario where this approach doesn't seem to work. If I ...
2
votes
2answers
497 views

JAXB 2.x : Marshalling puts element value twice into the XML

For some reason, all values of an element gets written twice. My test case is very simple: package test; import javax.xml.bind.annotation.XmlAccessType; import ...