I\'m trying to get a XmlAdapter to a HashMap to work and I keep getting an exception. I followed this blog entry very closely, and I\'ve been over my code many times yet I don\'t see the issue.
I am trying to use MOXy JAXB to serialize a class A which looks like: @XmlAccessorType(XmlAccessType.NONE)
When I 开发者_开发问答use @XmlSchema(attributeFormDefault = XmlNsForm.QUALIFIED, ...) or@XmlAttribute(namespace = \"sample.com/y\", ...)
In the last couple of days I have tried to make support for XML marshalling/unmarshalling of a Hibernate model, using MOXy JAXB. Trying to do this, I have run into a problem with hibernates proxy obje
I\'m new to JAXB and I want to change the default namespace prefix using EclipseLink MOXy. My package-info.java has the following code lines:
I\'m about to develop a JAX-RS based RESTful web service and I use MOXy开发者_C百科 (JAXB) in order to automatically generate my web service\'s JSON responses.
Ultimately I want JAXB to generate hashCode and equals implementations. The JAXB2 Basics plugin does that and it works fine for the Metro JAXB implementation in the JDK but fails with MOXy.
I\'m using MOXy to unmarshal a relatively simple XML document, but I\'m getting inconsistent behavior. The document consists of two elements with basic information (a name and date) followed by a list
I have a list setter on a class that\'s annotated with both @XmlElementWrapper(name = \"foos\") and @XmlElement(name = \"foo\").
I have an issue unmarshalling a xml stream to entities. My foreign keys never get set to an object with the proper primary key, they just get set to an emtpy object.