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/JaxbProperties"

m
m (Example 1 - Context Path)
Line 8: Line 8:
  
 
'''Code Example'''
 
'''Code Example'''
JAXBContext.newInstance("com.example.model");
+
<br>JAXBContext.newInstance("com.example.model");
  
 
== Example 2 - Class Array ==
 
== Example 2 - Class Array ==

Revision as of 15:36, 22 October 2007

JAXB is a standard that allows many underlying implementations. The standard way to specify which JAXB implementation should be used is through a file called jaxb.properties. This file contains one property. To specify that the EclipseLink JAXB implementation should be used the jaxb.properties file should have the following content:


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

Example 1 - Context Path

If a context path is used to create the JAXBContext then the corresponding jaxb.properties file must be available on the class path in the corresponding package.

Code Example
JAXBContext.newInstance("com.example.model");

Example 2 - Class Array

If a class array is used to create the JAXBContent then the corresponding jaxb.properties file must be available on the class path in the package corresponding to the package of the model classes. In the example below the corresponding package is "com.example.mocel".

Code Example Class[] classes = new Class[3]; classes[0] = com.example.model.Customer; classes[1] = com.example.model.Address; classes[2] = com.example.model.PhoneNumber; JAXBContext.newInstance(classes);

Back to the top