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

Line 42: Line 42:
 
<source lang="java">
 
<source lang="java">
 
package examples.virtual;
 
package examples.virtual;
 
import javax.xml.bind.annotation.XmlRootElement;
 
 
   
 
   
 
public class Customer extends ExtensibleBase {
 
public class Customer extends ExtensibleBase {
Line 106: Line 104:
 
<source lang="java">
 
<source lang="java">
 
package examples.virtual;
 
package examples.virtual;
 
import javax.xml.bind.annotation.XmlValue;
 
 
   
 
   
 
public class PhoneNumber extends ExtensibleBase {
 
public class PhoneNumber extends ExtensibleBase {
Line 122: Line 118:
 
   
 
   
 
}
 
}
 +
</source>
 +
 +
 +
== Base XML Bindings ==
 +
The base XML Bindings file will specify some initial basic meta-data that will be used for all tenants.
 +
* Root Element name for Customer
 +
* Add XmlValue to PhoneNumber
 +
 +
'''binding-tenant1.xml'''
 +
<source lang="xml">
 +
<?xml version="1.0"?>
 +
<xml-bindings
 +
    xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/oxm"
 +
    package-name="examples.virtual">
 +
    <java-types>
 +
        <java-type name="Customer">
 +
        </java-type>
 +
        <java-type name="PhoneNumber">
 +
            <java-attributes>
 +
            </java-attributes>
 +
        </java-type>
 +
    </java-types>
 +
</xml-bindings>
 
</source>
 
</source>

Revision as of 13:57, 15 June 2011

Introduction

EclipseLink MOXy provides the ability to augment the annotation metadata with an XML bindings file. With this feature, EclipseLink can now process multiple bindings files from different locations, and create a merged set of metadata.

Sample use case: 1. Initial metadata is specified with a metadata file. 2. Second version modifies the metadata with an additional XML bindings file. 3. Subsequent versions continue to modify with additional bindings files.

With the metadata layered in this way a JAXBContext could be created to represent any version of the XML document.

By using this in conjunction with a multi-tenant architecture, you can define a base set of metadata using one XML Bindings file, and then an additional file for each tenant. This example will be based on the object model from the EclipseLink Moxy Extensibile example.

Java Model

ExtensibleBase

package examples.virtual;
 
import java.util.HashMap;
import java.util.Map;
 
import javax.xml.bind.annotation.XmlTransient;
 
import org.eclipse.persistence.oxm.annotations.XmlVirtualAccessMethods;
 
@XmlTransient
@XmlVirtualAccessMethods(setMethod="put")
public class ExtensibleBase {
 
    private Map<String, Object> extensions = new HashMap<String, Object>();
 
    public <T> T get(String property) {
        return (T) extensions.get(property);
    }
 
    public void put(String property, Object value) {
        extensions.put(property, value);
    }
}

Customer

The Customer class will be extensible since it inherits from a domain class that has been annotated with @XmlVirtualAccessMethods.

package examples.virtual;
 
public class Customer extends ExtensibleBase {
 
    private String firstName;
    private String lastName;
    private Address billingAddress;
 
    public String getFirstName() {
        return firstName;
    }
 
    public void setFirstName(String firstName) {
        this.firstName = firstName;
    }
 
    public String getLastName() {
        return lastName;
    }
 
    public void setLastName(String lastName) {
        this.lastName = lastName;
    }
 
    public Address getBillingAddress() {
        return billingAddress;
    }
 
    public void setBillingAddress(Address billingAddress) {
        this.billingAddress = billingAddress;
    }
 
}

Address

It is not necessary to have every class in your model be extensible. In this example the Address class will not have any virtual properties.

package examples.virtual;
 
public class Address {
 
    private String street;
 
    public String getStreet() {
        return street;
    }
 
    public void setStreet(String street) {
        this.street = street;
    }
 
}

PhoneNumber

Like Customer, PhoneNumber will be an extensible class.

package examples.virtual;
 
public class PhoneNumber extends ExtensibleBase {
 
    private String number;
 
    public String getNumber() {
        return number;
    }
 
    public void setNumber(String number) {
        this.number = number;
    }
 
}


Base XML Bindings

The base XML Bindings file will specify some initial basic meta-data that will be used for all tenants.

  • Root Element name for Customer
  • Add XmlValue to PhoneNumber

binding-tenant1.xml

<?xml version="1.0"?>
<xml-bindings
    xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/oxm"
    package-name="examples.virtual">
    <java-types>
        <java-type name="Customer">
        </java-type>
        <java-type name="PhoneNumber">
            <java-attributes>
            </java-attributes>
        </java-type>
    </java-types>
</xml-bindings>

Back to the top