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/Examples/MOXy/Dynamic"

(Overview)
(Overview)
Line 5: Line 5:
  
  
 +
* '''[[EclipseLink/Examples/MOXy/Dynamic/StaticComparison|Comparison with Static JAXB]]''' - See how dynamic JAXB compares with static JAXB.
 
* '''[[EclipseLink/Examples/MOXy/Dynamic/JAXBContextFromXMLSchema|JAXB Context from XML Schema]]''' - See how to bootstrap a Dynamic JAXBContext from an XML Schema.
 
* '''[[EclipseLink/Examples/MOXy/Dynamic/JAXBContextFromXMLSchema|JAXB Context from XML Schema]]''' - See how to bootstrap a Dynamic JAXBContext from an XML Schema.
 
* '''[[EclipseLink/Examples/MOXy/Dyanmic/XmlToDynamicEntity|XML to DynamicEntity]]''' - Learn how to unmarshal an XML document to dynamic entities.
 
* '''[[EclipseLink/Examples/MOXy/Dyanmic/XmlToDynamicEntity|XML to DynamicEntity]]''' - Learn how to unmarshal an XML document to dynamic entities.

Revision as of 11:50, 21 June 2010

Overview

EclipseLink Dynamic MOXy introduces a new concept in JAXB development - the freedom to bootstrap a JAXBContext from a variety of metadata sources and use familiar JAXB APIs to marshal and unmarshal data, all without having actual compiled domain classes. This enables the metadata to be updated without worrying about updating and recompiling the previously-generated Java source code.

Instead of actual Java classes (e.g. Customer.class, Address.class, etc), the domain objects used in Dynamic MOXy will be subclasses of DynamicEntity. DynamicEntities offer a simple get(propertyName) / set(propertyName, propertyValue) API to manipulate their data. DynamicEntities have an associated DynamicType, which will be generated in memory when the metadata is parsed.


Back to the top