Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/Examples/MOXy/JAXB/SpecifyRuntime"

< EclipseLink‎ | Examples‎ | MOXy‎ | JAXB
(New page: ==Specifying the EclipseLink MOXy Runtime== You will need to have the JAXB APIs (included in Java SE 6) and eclipselink.jar ([http://www.eclipse.org/eclipselink/downloads/ download site])...)
 
(Specifying the EclipseLink MOXy Runtime)
Line 1: Line 1:
==Specifying the EclipseLink MOXy Runtime==
+
== Overview ==
 +
 
 +
The JAXB specification defines a standard runtine.  EclipseLink MOXy is one implementation of this runtime.  In this example you will learn how to specify that EclipseLink MOXy is the JAXB provider.
 +
 
 +
== Specifying the EclipseLink MOXy Runtime ==
  
 
You will need to have the JAXB APIs (included in Java SE 6) and eclipselink.jar ([http://www.eclipse.org/eclipselink/downloads/ download site]) on your classpath.
 
You will need to have the JAXB APIs (included in Java SE 6) and eclipselink.jar ([http://www.eclipse.org/eclipselink/downloads/ download site]) on your classpath.

Revision as of 17:03, 29 January 2010

Overview

The JAXB specification defines a standard runtine. EclipseLink MOXy is one implementation of this runtime. In this example you will learn how to specify that EclipseLink MOXy is the JAXB provider.

Specifying the EclipseLink MOXy Runtime

You will need to have the JAXB APIs (included in Java SE 6) and eclipselink.jar (download site) on your classpath.

To specify the EclipseLink MOXy (JAXB) runtime should be used you need to add a file called jaxb.properties in the same package as the domain classes with the following entry.

javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory

Back to the top