Skip to content
Advertisement

XML Schema to Java Classes with XJC

I am using xjc to generate Java classes from the XML schema and the following is an excerpt of the XSD.

JavaScript

For the most part the generated classes are fine but for the above block I would get something like:

JavaScript

with the following comment above it:

JavaScript

I have placed a comment at the end of the two line in question.

At the moment, I don’t think it will be easy to change the schema since this was decided between vendors and I would not want to go this route (if possible) as it will slow down progress quite a bit.

I searched and have found this page, is the external customization what I want to do? I have been mostly working with the generated classes so I’m not entirely familiar with the process that generates these classes. A simple example of the “property customization” would be great! Alternative method of generating the Java classes would be fine as long as the schema can still be used.

EDIT: I should clarify that the two UnstructuredName are indeed the same element.

Advertisement

Answer

The essential problem here is that you have a <xs:sequence> consisting of an <xs:choice>, which translates in Java to “a List of things”. Java’s type structure isn’t flexible enough to represent this any better.

A binding customisation might help you, but in this case, I suspect not, since I can’t see a better way to represent this information.

An alternative technique I’ve used in the past is to pass the schema through a simple XSLT transformation first, re-arranging the components into something more JAXB-friendly, while still permitting the same structures the documents will have in reality. This way, you can “change” the schema without changing the original.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement