Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be 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/UserGuide/MOXy/Runtime/Specifying the EclipseLink Runtime"

m (Specifying the EclipseLink Runtime)
(No difference)

Revision as of 10:48, 8 July 2010

Specifying the EclipseLink Runtime

Specifying the EclipseLink MOXy JAXB runtime is easy. Simply add a text file named jaxb.properties in the same directory as your model classes with the following entry:

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

Then when you create a JAXBContext using the standard APIs it will be the MOXy implementation:

JAXBContext jaxbContext = JAXBContext.newInstance(Customer.class);

Since none of your application code needs to change, you can seamlessly switch between JAXB implementations.

Back to the top