New answers tagged moxy
0
You can use EclipseLink JAXB (MOXy)'s external binding file to provide metadata for classes that cannot be modified:
oxm.xml
<?xml version="1.0"?>
<xml-bindings
xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/oxm"
package-name="com.example.foo">
<java-types>
<java-type name="First">
...
1
When creating a JAXBContext based on a model generated from an XML schema you should always use the the newInstance method that takes the package name. This will ensure that all the necessary bits are processed.
JAXBContext jC = JAXBContext.newInstance("ch.forum_datenaustausch.de");
When you use the JAXBContext.newInstance(Class...) method the JAXB ...
0
Note: I'm the EclipseLink JAXB (MOXy) lead and a member of the JAXB (JSR-222) expert group.
The current support for multi-dimensional arrays in MOXy matches the XML representation as defined in the JAXB specification. I will update this answer once I have come up with an appropriate workaround for you.
Below is an enhancement request that you can use to ...
1
Note: I'm the EclipseLink JAXB (MOXy) lead and a member of the JAXB (JSR-222) expert group.
With MOXy as your JSON-binding provider the shared references post you referenced (from my blog) will work for JSON just as it does for XML. Since you are using JAX-RS below is an example of configuring MOXy in that environment:
...
0
You could specify @XmlAcessorType(XmlAccessType.FIELD) so that MOXy (or and JAXB implementation) uses the field directly instead of the property (get/set methods). With this access type you will want to put the annotations on the fields.
For More Information
http://blog.bdoughan.com/2011/06/using-jaxbs-xmlaccessortype-to.html
1
Blaise is right, the jaxb.properties must be under resource in same folder structure(package) as in src/main/java folders.
In my case i have 20 of those files (and jaxb-classes for 20 xsd). To get it working without manually copying add to pom:
<build>
...
<resources>
<resource>
...
1
EclipseLink JAXB (MOXy) will marshal without an @XmlRootElement annotation, the the JAXB reference implementation will complain.
Discrepancy in marshal behaviour
I suspect that you do not have the jaxb.properties file in the correct location of your Maven setup. If your domain model is in the com.example.foo package then the jaxb.properties file ...
1
The following should help. This question is also being handled on the EclipseLink forum:
http://www.eclipse.org/forums/index.php/t/487391/
for some reason the schema location attribute is gone.
You can specify the following property on the Marshaller to output a schema location:
marshaller.setProperty(Marshaller.JAXB_SCHEMA_LOCATION, ...
0
UPDATE
I created a Web Application using NetBeans 7.3 and all I needed to do to include EclipseLink was right click the Libraries icon in the Project panel and choose Add Jar/Folder... and then subsequently point at the eclipselink.jar in the EclipseLink install.
The import for @XmlInverseReference is the following:
import ...
1
Note: I'm the EclipseLink JAXB (MOXy) lead and a member of the JAXB (JSR-222) expert group.
In EclipseLink 2.5 (get it here: http://www.eclipse.org/eclipselink/downloads/milestones.php) we added a new feature to MOXy JAXB called Object Graphs. Object Graphs allow to programatically or through metadata select a subset of properties that you want to ...
1
I will not try to dig into the XSD too. Here my advice :
1- By default, JAXB shall not serialize null fields.
So you can simply nullify fields, you don't want to serialize.
To be a bit more clean, I would recommend you to nullify copies of your business objects. Just to be sure that you won't have side effects in the applications.
2- You can also make ...
1
If you are using EclipseLink 2.5.0 you can leverage MOXy's @XmlNamedObjectGraphs extension for this use case. An EclipseLink 2.5.0 release candidate can be downloaded from the following link:
http://www.eclipse.org/eclipselink/downloads/milestones.php
Domain Model (Foo)
The @XmlNamedObjectGraph extension allows you to specify subsets of your mappings ...
1
If the models are very different, than perhaps just have different models, or possibly use inheritance.
For JPA you can define the mappings in an orm.xml and choose to map what you wish, so you can use the same model, just have a different orm.xml for each application.
2
Would it work for you if Model keeps the data as a org.w3c.dom.Node then?
@XmlAnyElement
public Node data;
Then MOXy will handle this scenario but I believe there are is a bug if you read in the formatted XML and then write back out to JSON (extra newline/whitespace as a value in the output). However, with this setup I was able to read/write the XML ...
1
That is a known difference between EclipseLink MOXy and the RI. We have left this door open in MOXy for the use case where you are marshalling into an OutputStream or Writer where the root element has already been written.
Are you counting on an exception being thrown. When there is no root element you can wrap the object in an instance of JAXBElement.
...
0
Any JAXB (JSR-222) implementation (including EclipseLink MOXy) can keep free from information as a DOM structure. You could use an XmlAdapter to convert that DOM structure to/from a Map.
XmlAdapter (DomMapAdapter)
Below is a skeleton for the XmlAdapter, I haven't actually included the logic for converting between a java.util.Map and org.w3c.dom.Document.
...
2
Is Person (or whatever other class you have) a class that is available at runtime? Could the XML/JSON be modified slightly to include a type attribute that indicates which class it corresponds to? If so the example here may help you http://blog.bdoughan.com/2012/02/xmlanyelement-and-xmladapter.html
Your Model would then have something like this
...
Top 50 recent answers are included
