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/Bootstrapping Dynamic/Specifying the EclipseLink Runtime"

m
m (Specifying Dynamic JAXB Bootstrapping in EclipseLink Runtime)
Line 6: Line 6:
 
}}
 
}}
 
==Specifying Dynamic JAXB Bootstrapping in EclipseLink Runtime==
 
==Specifying Dynamic JAXB Bootstrapping in EclipseLink Runtime==
 +
 +
 +
You can create <tt>JAXBContexts</tt> by specifying a factory class in <tt>jaxb.properties</tt> file and then using the <tt>JAXBContext.newInstance()</tt> API.
 +
 +
#Create a <tt>jaxb.properties</tt> with the following contents
 +
 +
, specifying our <tt>DynamicJAXBContextFactory</tt> as the factory used to build new <tt>JAXBContexts</tt>. 
 +
 +
#Place the <tt>jaxb.properties</tt> on your classpath within the package in which the <tt>DynamicEntites</tt> will be generated.<div>
 +
In this example, the <tt>mynamespace</tt> package will contain the <tt>DynamicEntities</tt>:
 +
<source lang="java">
 +
javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.dynamic.DynamicJAXBContextFactory
 +
</source></div>
 +
#Use the <tt>newInstance(String contextPath)</tt> method to create a <tt>DynamicJAXBContext</tt>.  <br />When this method is called, MOXy attempts to locate a <tt>jaxb.properties</tt> file on the classpath in the package specified by <tt>contextPath</tt>, and use the specified factory.<div style="width:80%"><source lang="java">
 +
 +
DynamicJAXBContext jaxbContext = (DynamicJAXBContext) JAXBContext.newInstance("mynamespace");
 +
 +
</source></div>
 +
 +
 +
  
  

Revision as of 10:58, 10 December 2010

Dynamic MOXy - Bootstrapping from jaxb.properties


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

Specifying Dynamic JAXB Bootstrapping in EclipseLink Runtime

You can create JAXBContexts by specifying a factory class in jaxb.properties file and then using the JAXBContext.newInstance() API.

  1. Create a jaxb.properties with the following contents

, specifying our DynamicJAXBContextFactory as the factory used to build new JAXBContexts.

  1. Place the jaxb.properties on your classpath within the package in which the DynamicEntites will be generated.

In this example, the mynamespace package will contain the DynamicEntities:

javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.dynamic.DynamicJAXBContextFactory
  1. Use the newInstance(String contextPath) method to create a DynamicJAXBContext.
    When this method is called, MOXy attempts to locate a jaxb.properties file on the classpath in the package specified by contextPath, and use the specified factory.
    DynamicJAXBContext jaxbContext = (DynamicJAXBContext) JAXBContext.newInstance("mynamespace");




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

Back to the top