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
 
(34 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{EclipseLink_UserGuide
+
'''[[Image:Elug_draft_icon.png|Warning]] For the current release, see [http://www.eclipse.org/eclipselink/documentation/2.4/moxy Developing JAXB Applications Using EclipseLink MOXy, EclipseLink 2.4]
|info=y
+
'''
|api=y
+
|apis= * [http://www.eclipse.org/eclipselink/api/2.1/index.html?org/eclipse/persistence/jaxb/JAXBContextFactory.html *.jaxb.JAXBContextFactory]
+
|eclipselink=y
+
|eclipselinktype=MOXy
+
}}
+
  
=Specifying the EclipseLink Runtime=
+
http://www.eclipse.org/eclipselink/documentation/2.4/moxy/runtime001.htm
 
+
In order to use EclipseLink MOXy as your JAXB implementation, you must identify the EclipseLink JAXBContextFactory in your jaxb.properties file.
+
 
+
# Create a text file named '''jaxb.properties''' with the following entry:
+
 
+
<source lang="java">
+
javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory
+
</source>
+
 
+
#Copy the file to the same directory in which your model classes reside.
+
 
+
#Create a '''JAXBContent''' using the standard APIs:
+
 
+
<source lang="java">
+
JAXBContext jaxbContext = JAXBContext.newInstance(Customer.class);
+
</source>
+
 
+
Because you do ''not'' need to change any of application code, you can easily switch between 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_MOXy
+
|next=[[EclipseLink/UserGuide/MOXy/Runtime/Bootstrapping|Bootstrapping]]
+
|previous=[[EclipseLink/UserGuide/MOXy/Runtime|Runtime]]
+
|up=[[EclipseLink/UserGuide/MOXy/Runtime|Runtime]]
+
|version=2.2.0 DRAFT}}
+

Latest revision as of 16:26, 6 November 2012

Warning For the current release, see Developing JAXB Applications Using EclipseLink MOXy, EclipseLink 2.4

http://www.eclipse.org/eclipselink/documentation/2.4/moxy/runtime001.htm

Back to the top