MOXy is the object-to-XML component of EclipseLink. It is a JAXB implementation with extensions for supporting: XPath based mapping, JPA entities, and infoset preservation.
4
votes
1answer
263 views
JAXB 2.x: Abstract methods get marshalled as Attribute
I have an abstract root class, let's say A.
And I have several implementation classes extending A.
A has FIELD annotation as well as some @XmlElement annotated properties.
A also has an abstract ...
4
votes
1answer
392 views
Jpa entities over a JAX WS services without infinite loop
How can I send JPA generated entities over an JAX WS web service without getting the
an XML infinite cycle exception because of the cycle of references in those entities?
Any idea? I found this MOXy ...
4
votes
1answer
1k views
Where to include jaxb.properties file?
I have REST (Jersey) webservice that makes use of some data objects that are marshalled/unmarshalled to/from XML. The data objects are in a separate project/jar that the webservice war depends on.
...
3
votes
1answer
35 views
how to set characterEscapeHandler for moxy jaxb
I'm trying to set custom characterEscapeHandler for moxy jaxb but getting exception:
javax.xml.bind.PropertyException: name: com.sun.xml.bind.characterEscapeHandler value: ..
I do it (and it ...
3
votes
1answer
166 views
With MOXy and XPath, is it possible to unmarshal a list of attributes?
Edit: here's how I'm loading the XML document, as I used it in Blaise's answer. I'm loading it like this because I want to work with a node, not the whole doc. Even using the whole document I'm ...
3
votes
1answer
104 views
Is there a possibility to hide the “@type” entry when marshalling subclasses to JSON using EclipseLink MOXy (JAXB)?
I'm about to develop a JAX-RS based RESTful web service and I use MOXy (JAXB) in order to automatically generate my web service's JSON responses.
Everything is cool, but due to the fact that the web ...
3
votes
4answers
1k views
JAXB 2.x: How to unmarshal an XML without knowing the target class?
If there is a way, how to do this, I'd like to know the most elegant one.
Here is the question:
- Let's assume you have an abstract class Z
- You have two classes inherited from Z: named A and B.
You ...
3
votes
2answers
3k views
JAXB unmarshalling multiple XML elements into single class
I have the following XML structure, which is modelling a single concept across multiple XML elements. This format is not in my control.
<Output>
<Wrapper>
<Channel>
...
3
votes
1answer
137 views
Is there any way to map two links in a JAXB XML entity to different classes?
Is there any way to map two links in a JAXB XML entity to different classes?
Example:
<restresource>
<atom:link rel="http://myuri/rels/author" href="http://myuri/users/42" title="That's ...
3
votes
1answer
151 views
EclipseLink dynamic MOXy accessing enum values
I'm using the XSD listed below and a corresponding XML. Everything works well with dynamic MOXy but I haven't any idea how to access the enum type within java.
Any suggestions?
Thanks for help.
...
3
votes
1answer
230 views
How to know what JAXB implementation is used?
I am using MOXy as JAXB Implementation but somehow I would like to show the Implementation Name (e.g. Moxy) and the version number on some admin screen (dynamically).
How can I retrieve that info ...
3
votes
2answers
449 views
I'd like to serialize an xml file into java objects
I have this xml file which i want to unmarchal it in a java object.I am using the MOXy JAXB library.
test.xml
<?xml version="1.0" encoding="UTF-8"?>
<project >
...
3
votes
1answer
140 views
Is there any tool to validate @XmlPath annotations?
Is there any tool to validate @XmlPath annotations used from MOXy JAXB at a specific xml file at compile time from Eclipse or IntelliJIdea java framework or something else?
2
votes
1answer
68 views
JAX-B: Missing XML attributes on child elements
Edit: I originally left out what may be an important detail from my question -- My service methods that return Java objects to be marshaled return an interface type (Foo) rather than the class ...
2
votes
1answer
76 views
Configuring CXF with Spring to use MOXY for XML marshalling/unmarshalling
I have a Java server application that uses CXF to provide SOAP and REST web services. Currently it uses the reference implementation of JAX-B for XML marshalling/unmarshalling, but I have configured ...
2
votes
1answer
102 views
eclipselink/Moxy : inheritance and attribute name oveloading based on type
I'm facing a marshalling/unmarshalling problem involving inheritance and polymorphism using MOXy's JAXB implementation and external metadata bindings file.
I have no control on the XML files or the ...
2
votes
1answer
53 views
JaxB EclipseLink/MOXy : Supposedly empty date marshalled as today's date instead of no writing a node for it
Once again I have a question about Eclipselink/MOXy with external metadata mapping file.
I have a reference xml which applies to a class. This xml contains data that applies to some but not always ...
2
votes
1answer
99 views
How to handle java.util.Date with MOXy bindings file
i'm new to MOXy and JaxB in general and I'm facing a problem with java.util.Date conversion.
I'm unmarshaling an XML file (which I have no control of) to objects using a mapping file (I can neither ...
2
votes
1answer
97 views
JAXB-Eclipselink: Mapping abstract “getter” to XML
I am using the EclipseLink implementation (2.3) of JAXB to map POJOs to XML and encountering a problem with following usecase:
public abstract class A {
public abstract Set<X> getX();
...
2
votes
1answer
66 views
How do I un/marshall attributed elements in JAXB?
It seems like this should be fairly obvious, but I can't find anything on how to simply (un)marshall XML elements which also have attributes using JAXB.
In other words, I understand how to use JAXB ...
2
votes
1answer
121 views
How do I use Moxy from Scala?
This is a follow-on question from How to un/marshall underscored XML to/from camelcased Java using JAXB?
I'm trying to use Moxy (part of EclipseLink) from Scala (sbt 0.10.0), and am struggling to ...
2
votes
1answer
63 views
EclipseLink MOXy @XmlPath support for axes/parent
Are any of the following XPath expressions acceptable? Using version 2.3.1 of eclipselink
@XmlPath("../header/@type")
@XmlPath("/root/header/@type")
@XmlPath("parent::*/header/@type")
Basically ...
2
votes
1answer
78 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
1answer
154 views
Can I replace jaxb.properties with code?
I am using some non-standard extensions from EclipseLink's implementation of JAXB, and to enable that implementation, I have to configure it using jaxb.properties. Works well.
However, due to a build ...
2
votes
1answer
389 views
(moxy) jaxb marshaling and hibernate proxy objects
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 ...
2
votes
1answer
442 views
Cannot get EclipseLink MOXy to work
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:
@javax.xml.bind.annotation.XmlSchema (
...
2
votes
1answer
537 views
JAXB: Qualified attributes disables default namespace xmlns=“”?
When I use @XmlSchema(attributeFormDefault = XmlNsForm.QUALIFIED, ...)
or@XmlAttribute(namespace = "sample.com/y", ...)
JAXB ignores @XmlSchema(namespace = "sample.com/x", ...)
and instead of:
...
2
votes
1answer
213 views
nested @XmlJavaTypeAdapter annotations ignored where nested objects are generic when using eclispelink
When marshaling an object tree I am making use of the @XmlJavaTypeAdapter. Some adapters return objects of classes which themselves have the @XmlJavaTypeAdapter annotation. This worked fine when I ...
2
votes
1answer
154 views
Can I use the JAXB2 Basics plugin with the MOXy JAXB implementation from EclipseLink? If not, is there an alternate?
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 get:
...
2
votes
3answers
399 views
JAXB/MOXy: Do not call XmlElementWrapper setter when element missing?
I have a list setter on a class that's annotated with both @XmlElementWrapper(name = "foos") and @XmlElement(name = "foo").
When I unmarshall XML that has no <foos></foos> or <foo/> ...
2
votes
1answer
434 views
How to generate Java from an XSD using MOXy under Maven-3?
What's the easiest/best way to generate Java from an XSD using MOXy under Maven-3?
The reference JAXB interface has a nice Maven plugin, but it doesn't appear to support MOXy.
Does anyone have ...
2
votes
1answer
579 views
Staying DRY with JAXB
I'm developing a number of Java classes that must serialize to XML in the following format:
<foo value="123"/>
<!-- or this -->
<bar value="abc"/>
<!-- or this -->
<baz ...
2
votes
1answer
244 views
JAXB Unmarshalling to entities error
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.
The class with the foreign keys ...
2
votes
1answer
112 views
JAXB/MOXy: How to partially unmarshall, passing the descendants of a given node to a closed/proprietary class?
I'm starting with some Java classes that I would like to be able to unmarshall from XML--I'm determining the schema as I go. I would like to use XML similar to the following:
<Person fname="John" ...
2
votes
1answer
286 views
MOXy JSON support
I'm using EclipseLink's MOXy as the JAXB implementation in my RESTEasy project.MOXy's advanced functionality which has been brought by annotations like @XmlDiscriminatorNode & Value helped me a ...
2
votes
1answer
341 views
How does MOXy's xml-transient declaration work?
I have a set of a beans in a separate project that I'm unable to alter. These beans have both JPA and JAXB annotations, and are being used in a RESTful implementation. Most of my relationships are ...
2
votes
1answer
456 views
How to create JAXBContext in EclipseLink?
JAXBContext.newInstance() method receives Map with properties as a parameter.
Which properties and how should I specify to make JAXBContext instance informed about several files with xml-mappings?
...
2
votes
2answers
332 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 ...
2
votes
2answers
328 views
Generating schema with default minOccurs using MOXy
I'm trying to use EclipseLink MOXy 2.1.2 and Java 1.6 to generate a schema based on my domain classes, following this example: http://wiki.eclipse.org/EclipseLink/Examples/MOXy/JAXB/GenerateSchema
...
2
votes
1answer
516 views
Using EclipseLink MOXy with Java 1.5
Has anyone got EclipseLink MOXy (I'm using eclipselink 2.1.0) to work with Java 5? Whenever I try to unmarshal I get a null pointer exception in org.eclipse.persistence.oxm.record.UnmarshalRecord, in ...
1
vote
1answer
51 views
JAXB-ElipseLink: Marshaller not validating
I would like my Eclipselink 2.3 Marshaller to perform validation upon marshalling.
I have made sure that the Schema is correctly created by a SchemaFactory, i am passing it to Marshaller.setSchema and ...
1
vote
1answer
40 views
JAXB-ElipseLink: Preventing marshalling of inherited property
Again i am having an EclipseLink 2.3 marshalling-usecase that seems to be quite trivial but not working as expected:
I have an abstract base class which defines a property getX(). I have several ...
1
vote
1answer
90 views
JAXB-Eclipselink: XmlRootElement and inheritance
Using Eclipselink/MOXy 2.3 i have following usecase in marshalling to XML:
abstract class MyAbstract {
}
class MyImpl extends MyAbstract {
}
class A {
private MyAbstract myAbstract;
// ...
1
vote
1answer
44 views
Jaxb EclipseLink/MOXy : Is it possible to specify the names of get/set methods
I have a quite simple question :
Say I have a model class defined like this :
public class Test{
private String testAttribute;
public Test(){
}
public String ...
1
vote
1answer
61 views
Jaxb Moxy with Hibernate? on Jboss 6.1
Is it possible to use Moxy With Hibernate?
And if so how do i install it, have tried to find documentation of it but found nothing.
1
vote
1answer
55 views
JAXB-Eclipselink: Inherited properties
I have following use-case for marshalling a POJO to XML using Eclipselink MOXy 2.3:
public abstract class A {
public abstract getX();
}
public class B extends A {
private Foo x;
...
1
vote
1answer
40 views
EclipseLink MOXy @XmlPath support for predicate inequality
Having previously posted EclipseLink MOXy @XmlPath support for axes/parent
I'm still working with @XmlPath annotation and it appears to me predicate inequality isn't supported?
@XmlPath("node[@attr ...
1
vote
1answer
22 views
Check my JAXB implementation
I am trying to use Eclipselink's MOXy. I put jaxb.properties file in the same directory as my annotated classes and it contains the entry:
...
1
vote
1answer
127 views
Mapping xml to jpa entities using JAXB
Isn't it possible to map xml to jpa entities using JAXB? Will Eclipselink Moxy be helpful?
1
vote
1answer
111 views
List wrappers in JAXB MOXy
I am declaring a List object property with:
@XmlRootElement(namespace = "...")
@XmlType
public class Test {
private List<String> myList;
@XmlElementWrapper(name = "myListWrapper")
...