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 "User:Rick.barkhouse.oracle.com"

 
(6 intermediate revisions by the same user not shown)
Line 18: Line 18:
 
[[Category:Users|Rick Barkhouse]]
 
[[Category:Users|Rick Barkhouse]]
 
[[Category:Committers|Rick Barkhouse]]
 
[[Category:Committers|Rick Barkhouse]]
 
 
----
 
 
 
{{EclipseLink_UserGuide
 
|info=y
 
|toc=y
 
|api=n
 
}}
 
 
= Refreshing Metadata =
 
 
EclipseLink MOXy 2.3 introduces the ability to refresh your '''JAXBContext's''' metadata at runtime.  This allows you to make changes to existing mappings in a live application environment and see those changes immediately without having to create a new '''JAXBContext'''.
 
 
In order to use the Metadata Refresh feature, your metadata information must be provided as either '''Nodes''' or '''MetadataSource'''.
 
 
== Example ==
 
 
Our example will be bootstrapped from the following EclipseLink OXM file:
 
 
<source lang="xml">
 
<?xml version="1.0"?>
 
<xml-bindings
 
    xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/oxm"
 
    package-name="example">
 
    <java-types>
 
        <java-type name="Root">
 
            <java-attributes>
 
                <xml-element java-attribute="name" name="orig-name"/>
 
            </java-attributes>
 
        </java-type>
 
    </java-types>
 
</xml-bindings>
 
</source>
 
 
Our '''JAXBContext''' is created in the standard way.
 

Latest revision as of 16:05, 20 June 2011

bugzilla id: rick.barkhouse (at) oracle.com

committer id: rbarkhous

Location: Ottawa, Canada - Eastern Standard Time

  • Committer on Eclipse Persistence Services project - EclipseLink

Profession: Software Engineer

Currently working for Oracle Corporation on their TopLink product.

Also working with Eclipse Foundation on their EclipseLink product.

Back to the top