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"

(Base XML Bindings)
Line 126: Line 126:
 
* Add XmlValue to PhoneNumber
 
* Add XmlValue to PhoneNumber
  
 +
'''base-bindings.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">
 +
          <xml-root-element name="empRoot"/>
 +
        </java-type>
 +
        <java-type name="PhoneNumber">
 +
            <java-attributes>
 +
              <xml-value java-attribute="number"/>
 +
            </java-attributes>
 +
        </java-type>
 +
    </java-types>
 +
</xml-bindings>
 +
</source>
 +
 +
== Customizations for Tenant 1 ==
 
'''binding-tenant1.xml'''
 
'''binding-tenant1.xml'''
 
<source lang="xml">
 
<source lang="xml">
Line 134: Line 154:
 
     <java-types>
 
     <java-types>
 
         <java-type name="Customer">
 
         <java-type name="Customer">
 +
            <xml-type prop-order="firstName middleName lastName billingAddress shippingAddress phoneNumbers"/>
 +
            <java-attributes>
 +
                <xml-attribute
 +
                    java-attribute="id"
 +
                    type="java.lang.Integer"/>
 +
                <xml-element
 +
                    java-attribute="middleName"
 +
                    type="java.lang.String"/>
 +
                <xml-element
 +
                    java-attribute="shippingAddress"
 +
                    type="examples.virtual.Address"/>
 +
                <xml-element
 +
                    java-attribute="phoneNumbers"
 +
                    name="phoneNumber"
 +
                    type="examples.virtual.PhoneNumber"
 +
                    container-type="java.util.List"/>
 +
            </java-attributes>
 
         </java-type>
 
         </java-type>
 
         <java-type name="PhoneNumber">
 
         <java-type name="PhoneNumber">
 
             <java-attributes>
 
             <java-attributes>
 +
                <xml-attribute
 +
                    java-attribute="type"
 +
                    type="java.lang.String"/>
 
             </java-attributes>
 
             </java-attributes>
 
         </java-type>
 
         </java-type>
 
     </java-types>
 
     </java-types>
 
</xml-bindings>
 
</xml-bindings>
 +
</source>
 +
 +
== Creating The Context ==
 +
To create a context using multiple bindings files, pass in a list of sources instead of a single source. A source can be a File, a Stream, or a String representing either a URL or a classpath reference.
 +
 +
<source lang="java">
 +
Map<String, Object> properties = new HashMap<String, Object>();
 +
properties.put(JAXBContextFactory.ECLIPSELINK_OXM_XML_KEY, "examples/virtual/binding-tenant1.xml");
 +
JAXBContext jc = JAXBContext.newInstance(new Class[] {Customer.class, Address.class}, properties);
 +
 +
Marshaller marshaller = jc.createMarshaller();
 +
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
 +
marshaller.marshal(customer, System.out);
 
</source>
 
</source>

Revision as of 15:06, 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

base-bindings.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">
           <xml-root-element name="empRoot"/>
        </java-type>
        <java-type name="PhoneNumber">
            <java-attributes>
               <xml-value java-attribute="number"/>
            </java-attributes>
        </java-type>
    </java-types>
</xml-bindings>

Customizations for Tenant 1

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">
            <xml-type prop-order="firstName middleName lastName billingAddress shippingAddress phoneNumbers"/>
            <java-attributes>
                <xml-attribute
                    java-attribute="id"
                    type="java.lang.Integer"/>
                <xml-element
                    java-attribute="middleName"
                    type="java.lang.String"/>
                <xml-element
                    java-attribute="shippingAddress"
                    type="examples.virtual.Address"/>
                <xml-element
                    java-attribute="phoneNumbers"
                    name="phoneNumber"
                    type="examples.virtual.PhoneNumber"
                    container-type="java.util.List"/>
            </java-attributes>
        </java-type>
        <java-type name="PhoneNumber">
            <java-attributes>
                <xml-attribute
                    java-attribute="type"
                    type="java.lang.String"/>
            </java-attributes>
        </java-type>
    </java-types>
</xml-bindings>

Creating The Context

To create a context using multiple bindings files, pass in a list of sources instead of a single source. A source can be a File, a Stream, or a String representing either a URL or a classpath reference.

Map<String, Object> properties = new HashMap<String, Object>();
properties.put(JAXBContextFactory.ECLIPSELINK_OXM_XML_KEY, "examples/virtual/binding-tenant1.xml");
JAXBContext jc = JAXBContext.newInstance(new Class[] {Customer.class, Address.class}, properties);
 
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(customer, System.out);

Back to the top