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

EclipseLink/Examples/MOXy/NativeOxmJaxbContext

< EclipseLink‎ | Examples‎ | MOXy
Revision as of 16:18, 22 October 2007 by Blaise.doughan.oracle.com (Talk | contribs) (New page: == Map Your Objects using EclipseLink's Native OXM == EclipseLink offers meet-in-the-middle object-to-XML mapping. This allows you to map an existing Java objects to an existing XML schem...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Map Your Objects using EclipseLink's Native OXM

EclipseLink offers meet-in-the-middle object-to-XML mapping. This allows you to map an existing Java objects to an existing XML schema. This can be done programmatically or visually using our mapping editor.

Create a sessions.xml file

Create a sessions.xml file. There are two vital pieces of information to capture. The first is the name of the session, this name must correspond to the context path you wish to use when creating the JAXBContent. The second is the location of your mapping metadata.

Create the JAXBContext

Create the JAXBContext using the context path option:

Code Example

Back to the top