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/UserGuide/MOXy/Runtime/Specifying the EclipseLink Runtime"

Line 11: Line 11:
 
In order to use EclipseLink MOXy as your JAXB implementation, you must identify the EclipseLink <tt>JAXBContextFactory</tt> in your <tt>jaxb.properties</tt> file.
 
In order to use EclipseLink MOXy as your JAXB implementation, you must identify the EclipseLink <tt>JAXBContextFactory</tt> in your <tt>jaxb.properties</tt> file.
  
# Create a text file named <tt>jaxb.properties</tt> with the following content:<br><div><source lang="java">
+
# Create a text file named <tt>jaxb.properties</tt>, specifying <tt>DynamicJAXBContextFactory</tt> as the factory used to build new <tt>JAXBContexts</tt>.
 
javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory
 
javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory
 
</source></div>
 
</source></div>
 
# Copy the file to the same package (directory) in which your model classes reside.
 
# Copy the file to the same package (directory) in which your model classes reside.
# Create a <tt>JAXBContent</tt> using the standard APIs:<br><div><source lang="java">
+
# Create a <tt>JAXBContent</tt> using the standard APIs.<br><div><source lang="java">
 
JAXBContext jaxbContext = JAXBContext.newInstance(Customer.class);
 
JAXBContext jaxbContext = JAXBContext.newInstance(Customer.class);
 
</source></div>
 
</source></div>

Revision as of 12:22, 6 January 2011

EclipseLink MOXy

Eclipselink-logo.gif
EclipseLink
Website
Download
Community
Mailing ListForumsIRCmattermost
Issues
OpenHelp WantedBug Day
Contribute
Browse Source


Specifying the EclipseLink Runtime

In order to use EclipseLink MOXy as your JAXB implementation, you must identify the EclipseLink JAXBContextFactory in your jaxb.properties file.

  1. Create a text file named jaxb.properties, specifying DynamicJAXBContextFactory as the factory used to build new JAXBContexts.

javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory </source></div>

  1. Copy the file to the same package (directory) in which your model classes reside.
  2. Create a JAXBContent using the standard APIs.
    JAXBContext jaxbContext = JAXBContext.newInstance(Customer.class);

Because you do not need to change any application code, you can easily switch between different JAXB implementations.

The JAXBContextFactory can

  • Create a JAXBContext from an array of Classes and a Properties object
  • Create a JAXBContext from a context path and a ClassLoader


Eclipselink-logo.gif
Version: 2.2.0 DRAFT
Other versions...

Back to the top