Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to write my first xsd which will have JAXB mapped POJOs generated from it, to be used in a webservice. There will be three related classes which I would like to see expressed in xml as...

<stringKey systemName="string key 1" businessName="Customer">Glorious strings</stringKey>
<numberKey systemName="number key 1" businessName="Invoice number">1025.52</numberKey>
<dateKey systemName="date key 1" businessName="Invoice date">1970-01-01</dateKey>

I'm trying to reuse the declaration of the annotations so the JAXB generated POJOs can belong to the same interface. So far I have the following xsd...

<xs:complexType name="dateKey">
    <xs:simpleContent>
        <xs:extension base="namedElement">
            <xs:attribute type="xs:dateTime" name="keyValue" />
        </xs:extension>
    </xs:simpleContent>
</xs:complexType>
<xs:complexType name="namedElement" abstract="true">
    <xs:simpleContent>
        <xs:extension base="xs:string">
            <xs:attribute type="xs:string" name="businessName" />
            <xs:attribute type="xs:string" name="systemName" />
        </xs:extension>
    </xs:simpleContent>
</xs:complexType>

This gets me part way there, it gives me xml like...

<dateKey systemName="date key 1" businessName="Invoice date"><keyValue>1970-01-01</keyValue></dateKey>

I am having difficulty reusing a type which declares the annotations, while overriding the base of that type. (Note I am trying to get rid of the 'keyValue' element in the above example). Any ideas?

EDIT: I've noticed the xsd snippet does not validate the following xml snippet - that seems to have been lost in the refactoring, but I hope you get the point...

share|improve this question

2 Answers

I have found you can use 'attributeGroup' to extract common attributes to create a xsd like...

<xs:complexType name="dateKey">
    <xs:simpleContent>
        <xs:extension base="xs:dateTime">
            <xs:attributeGroup ref="namedElement" />
        </xs:extension>
    </xs:simpleContent>
</xs:complexType>
<xs:attributeGroup name="namedElement">
    <xs:attribute type="xs:string" name="businessName" />
    <xs:attribute type="xs:string" name="systemName" />
</xs:attributeGroup>

This allows me to reuse the attributes across similar elements, but the generated POJOs do not share a common abstract superclass. I think I'm going to stop auto-generating the POJOs and go with hand built XSD and POJOs, although I'm a little worried that discrepancies between the two.

share|improve this answer
Decided against maintaining both the schema and the pojos independently, on reflection it was a crazy idea. I just removed the attributes and extracted the common elements into a base type. Doesn't look as pretty in the xml, but the code generation works (with superclasses) in .net and java now. – James Baxter Dec 2 '10 at 13:07

Why not start from Java classes and do the following. You will need to mark the parent class @XmlTransient to have things work correctly:

import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlTransient;

@XmlTransient
public class NamedElement {

    private String businessName;
    private String systemName;

    @XmlAttribute
    public String getBusinessName() {
        return businessName;
    }

    public void setBusinessName(String businessName) {
        this.businessName = businessName;
    }

    @XmlAttribute
    public String getSystemName() {
        return systemName;
    }

    public void setSystemName(String systemName) {
        this.systemName = systemName;
    }

}

And the subclasses would look like the following:

import java.util.Date;

import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlValue;

@XmlRootElement
public class DateKey extends NamedElement {

    private Date value;

    @XmlValue
    @XmlSchemaType(name="date")
    public Date getValue() {
        return value;
    }

    public void setValue(Date value) {
        this.value = value;
    }

}

Then the following code:

import java.io.File;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;

public class Demo {

    public static void main(String[] args) throws Exception {
        JAXBContext jc = JAXBContext.newInstance(DateKey.class);

        Unmarshaller unmarshaller = jc.createUnmarshaller();
        DateKey dateKey = (DateKey) unmarshaller.unmarshal(new File("input.xml"));

        Marshaller marshaller = jc.createMarshaller();
        marshaller.marshal(dateKey, System.out);
    }

}

Will handle your document:

<dateKey systemName="date key 1" businessName="Invoice date">1970-01-01</dateKey>
share|improve this answer
Thanks for your help - your example works, but the generated xsd does not share a common attributeGroup (which I believe will help with .NET interop / ease of use). I've decided to use your mapping with a handwritten xsd, and keep my fingers crossed nothing slips inbetween the two. – James Baxter Nov 3 '10 at 10:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.