How can I change out the default JAXB implementation for another one? I'm running Java 1.7.
Asked
Active
Viewed 667 times
2
-
(Wait .. there is more than one? :-/) – Dec 27 '12 at 01:25
-
Dint get your question. But is [this](http://stackoverflow.com/questions/10002006/how-to-specify-a-particular-jaxb-implementation) you are looking for? – Jayamohan Dec 27 '12 at 01:28
-
It looks like it may be. Thank you! – Coder Dec 27 '12 at 01:31
1 Answers
0
You must place a file called jaxb.properties
in the same package as your domain model with contents like the following that specifies EclipseLink MOXy as the JAXB (JSR-222) provider (I'm the MOXy lead).
javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory
For More Information

bdoughan
- 147,609
- 23
- 300
- 400