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"

m
Line 1: Line 1:
 +
{{EclipseLink_UserGuide
 +
|info=y
 +
}}
 
==Specifying the EclipseLink Runtime==
 
==Specifying the EclipseLink Runtime==
 
+
To specify the EclipseLink MOXy JAXB 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:
+
# Create a text file named '''jaxb.properties''' with the following entry:<div><source lang="java">
 
+
<source lang="java">
+
 
javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory
 
javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory
 +
</source></div>
 +
#Copy the file to the same directory in which your model classes reside.
 +
#Create a '''JAXBContent''' using the standard APIs:<div><source lang="java">
 +
JAXBContext jaxbContext = JAXBContext.newInstance(Customer.class);
 
</source>
 
</source>
 +
</div>
 +
 +
Because you do ''not'' need to change any of application code, you can easily switch between JAXB implementations.
  
Then when you create a JAXBContext using the standard APIs it will be the MOXy implementation:
 
  
<source lang="java">
 
JAXBContext jaxbContext = JAXBContext.newInstance(Customer.class);
 
</source>
 
  
Since none of your application code needs to change, you can seamlessly switch between JAXB implementations.
+
{{EclipseLink_MOXy
 +
|next=[[EclipseLink/UserGuide/MOXy/Runtime/Bootstrapping|Bootstrapping]]
 +
|previous=[[EclipseLink/UserGuide/MOXy/Runtime|Runtime]]
 +
|up=[[EclipseLink/UserGuide/MOXy/Runtime|Runtime]]
 +
|version=2.2.0}}

Revision as of 16:32, 6 December 2010


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

Specifying the EclipseLink Runtime

To specify the EclipseLink MOXy JAXB runtime:

  1. Create a text file named jaxb.properties with the following entry:
    javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory
  2. Copy the file to the same directory in which your model classes reside.
  3. Create a JAXBContent using the standard APIs:
    JAXBContext jaxbContext = JAXBContext.newInstance(Customer.class);

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


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

Back to the top