I am trying to import one XML Schema into another xsd file. However, xjc seems to fail during import when it finds inline JAXB property customizations. The error is, "com.sun.istack.SAXParseException2: compiler was unable to honor this property customization. It is attached to a wrong place, or its inconsistent with other bindings."
Moving the JAXB binding to a separate file works fine. The work I am doing requires both the file import and the JAXB property customizations. I have posted a simple example below to recreate the problem.
The first file, x.xsd, contains a single JAXB property customization, i.e.:
`
<xsd:schema xmlns:ext="http://example.org/" xmlns:jxb="http://java.sun.com/xml/ns/jaxb" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://example.org/" xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc" jxb:extensionBindingPrefixes="xjc" jxb:version="2.0">
<xsd:element name="ProductDetails" type="ext:ProductDetailsType"/>
<xsd:complexType name="ProductDetailsType">
<xsd:sequence>
<xsd:element name="defaultId" type="xsd:IDREF">
<xsd:annotation>
<xsd:appinfo>
<jxb:property>
<jxb:baseType name="ProductType"/>
</jxb:property>
</xsd:appinfo>
</xsd:annotation>
</xsd:element>
<xsd:element name="startDate" type="xsd:dateTime"></xsd:element>
<xsd:element name="endDate" type="xsd:dateTime"></xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:element name="ProductType" type="ext:ProductType"/>
<xsd:complexType name="ProductType">
<xsd:attribute name="name" type="xsd:string"></xsd:attribute>
<xsd:attribute name="description" type="xsd:string"></xsd:attribute>
<xsd:attribute name="guid" type="xsd:ID" use="required" />
</xsd:complexType></xsd:schema>`
The second file just imports it:
<xsd:schema xmlns:ext="http://example.org/" xmlns:jxb="http://java.sun.com/xml/ns/jaxb" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://example.org/" xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc" jxb:extensionBindingPrefixes="xjc" jxb:version="2.0">
<xsd:import namespace="http://example.org/" schemaLocation="x.xsd"/>
</xsd:schema>
When I try to compile these xsd files with xjc, the first (x.xsd) compiles and generates java source fine. The second one fails with the following error:
[INFO] [jaxb2:generate {execution: default}]
[ERROR] Error while parsing schema(s).Location [ jar:file:/C:/Users/ahendriks/Downloads/maven-jaxb2-plugin-sample-episode-0.7.4-SNAPSHOT-maven-src/maven-jaxb2-p lugin-sample-episode-0.7.4-SNAPSHOT/a/target/maven-jaxb2-plugin-sample-episode-a-maven-0.7.4-SNAPSHOT.jar!/x.xsd{14,21}]. com.sun.istack.SAXParseException2: compiler was unable to honor this property customization. It is attached to a wrong place, or its inconsistent with other bin dings. at com.sun.tools.xjc.ErrorReceiver.error(ErrorReceiver.java:82) at com.sun.tools.xjc.reader.xmlschema.ErrorReporter.error(ErrorReporter.java:79) at com.sun.tools.xjc.reader.xmlschema.UnusedCustomizationChecker.check(UnusedCustomizationChecker.java:144) at com.sun.tools.xjc.reader.xmlschema.UnusedCustomizationChecker.check(UnusedCustomizationChecker.java:122) at com.sun.tools.xjc.reader.xmlschema.UnusedCustomizationChecker.elementDecl(UnusedCustomizationChecker.java:227) at com.sun.xml.xsom.impl.ElementDecl.visit(ElementDecl.java:238) at com.sun.tools.xjc.reader.xmlschema.UnusedCustomizationChecker.particle(UnusedCustomizationChecker.java:241) at com.sun.xml.xsom.impl.ParticleImpl.visit(ParticleImpl.java:124) at com.sun.tools.xjc.reader.xmlschema.UnusedCustomizationChecker.modelGroup(UnusedCustomizationChecker.java:222) at com.sun.xml.xsom.impl.ModelGroupImpl.visit(ModelGroupImpl.java:125) at com.sun.tools.xjc.reader.xmlschema.UnusedCustomizationChecker.particle(UnusedCustomizationChecker.java:241) at com.sun.xml.xsom.impl.ParticleImpl.visit(ParticleImpl.java:124) at com.sun.tools.xjc.reader.xmlschema.UnusedCustomizationChecker.complexType(UnusedCustomizationChecker.java:182) at com.sun.xml.xsom.impl.ComplexTypeImpl.visit(ComplexTypeImpl.java:295) at com.sun.tools.xjc.reader.xmlschema.UnusedCustomizationChecker.run(UnusedCustomizationChecker.java:108) at com.sun.tools.xjc.reader.xmlschema.UnusedCustomizationChecker.run(UnusedCustomizationChecker.java:98) at com.sun.tools.xjc.reader.xmlschema.BGMBuilder._build(BGMBuilder.java:187) at com.sun.tools.xjc.reader.xmlschema.BGMBuilder.build(BGMBuilder.java:116) at com.sun.tools.xjc.ModelLoader.annotateXMLSchema(ModelLoader.java:415) at com.sun.tools.xjc.ModelLoader.load(ModelLoader.java:167) at com.sun.tools.xjc.ModelLoader.load(ModelLoader.java:113) at org.jvnet.jaxb2.maven2.RawXJC2Mojo.loadModel(RawXJC2Mojo.java:636) at org.jvnet.jaxb2.maven2.RawXJC2Mojo.doExecute(RawXJC2Mojo.java:259) at org.jvnet.jaxb2.maven2.RawXJC2Mojo.execute(RawXJC2Mojo.java:135) at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:490) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:694) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:556) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:535) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:387) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:348) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:180) at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:328) at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:138) at org.apache.maven.cli.MavenCli.main(MavenCli.java:362) at org.apache.maven.cli.compat.CompatibleMain.main(CompatibleMain.java:60) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315) at org.codehaus.classworlds.Launcher.launch(Launcher.java:255) at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430) at org.codehaus.classworlds.Launcher.main(Launcher.java:375) [ERROR] Error while parsing schema(s).Location [ jar:file:/C:/Users/ahendriks/Downloads/maven-jaxb2-plugin-sample-episode-0.7.4-SNAPSHOT-maven-src/maven-jaxb2-p lugin-sample-episode-0.7.4-SNAPSHOT/a/target/maven-jaxb2-plugin-sample-episode-a-maven-0.7.4-SNAPSHOT.jar!/x.xsd{11,51}]. com.sun.istack.SAXParseException2: (the above customization is attached to the following location in the schema) at com.sun.tools.xjc.ErrorReceiver.error(ErrorReceiver.java:82) at com.sun.tools.xjc.reader.xmlschema.ErrorReporter.error(ErrorReporter.java:79) at com.sun.tools.xjc.reader.xmlschema.UnusedCustomizationChecker.check(UnusedCustomizationChecker.java:149) at com.sun.tools.xjc.reader.xmlschema.UnusedCustomizationChecker.check(UnusedCustomizationChecker.java:122) at com.sun.tools.xjc.reader.xmlschema.UnusedCustomizationChecker.elementDecl(UnusedCustomizationChecker.java:227) at com.sun.xml.xsom.impl.ElementDecl.visit(ElementDecl.java:238) at com.sun.tools.xjc.reader.xmlschema.UnusedCustomizationChecker.particle(UnusedCustomizationChecker.java:241) at com.sun.xml.xsom.impl.ParticleImpl.visit(ParticleImpl.java:124) at com.sun.tools.xjc.reader.xmlschema.UnusedCustomizationChecker.modelGroup(UnusedCustomizationChecker.java:222) at com.sun.xml.xsom.impl.ModelGroupImpl.visit(ModelGroupImpl.java:125) at com.sun.tools.xjc.reader.xmlschema.UnusedCustomizationChecker.particle(UnusedCustomizationChecker.java:241) at com.sun.xml.xsom.impl.ParticleImpl.visit(ParticleImpl.java:124) at com.sun.tools.xjc.reader.xmlschema.UnusedCustomizationChecker.complexType(UnusedCustomizationChecker.java:182) at com.sun.xml.xsom.impl.ComplexTypeImpl.visit(ComplexTypeImpl.java:295) at com.sun.tools.xjc.reader.xmlschema.UnusedCustomizationChecker.run(UnusedCustomizationChecker.java:108) at com.sun.tools.xjc.reader.xmlschema.UnusedCustomizationChecker.run(UnusedCustomizationChecker.java:98) at com.sun.tools.xjc.reader.xmlschema.BGMBuilder._build(BGMBuilder.java:187) at com.sun.tools.xjc.reader.xmlschema.BGMBuilder.build(BGMBuilder.java:116) at com.sun.tools.xjc.ModelLoader.annotateXMLSchema(ModelLoader.java:415) at com.sun.tools.xjc.ModelLoader.load(ModelLoader.java:167) at com.sun.tools.xjc.ModelLoader.load(ModelLoader.java:113) at org.jvnet.jaxb2.maven2.RawXJC2Mojo.loadModel(RawXJC2Mojo.java:636) at org.jvnet.jaxb2.maven2.RawXJC2Mojo.doExecute(RawXJC2Mojo.java:259) at org.jvnet.jaxb2.maven2.RawXJC2Mojo.execute(RawXJC2Mojo.java:135) at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:490) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:694) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:556) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:535) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:387) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:348) at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:180) at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:328) at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:138) at org.apache.maven.cli.MavenCli.main(MavenCli.java:362) at org.apache.maven.cli.compat.CompatibleMain.main(CompatibleMain.java:60) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315) at org.codehaus.classworlds.Launcher.launch(Launcher.java:255) at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430) at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
If I move the JAXB binding to a separate file, the import and subsequent compilation work fine. The inline property cusomizations are unfortunately a priortity for my application. This problem also occurs if the JAXB property customizations are just javadoc, i.e.:
<xsd:annotation>
<xsd:appinfo>
<jxb:property>
<jxb:javadoc>This javadoc also causes an error.</jxb:javadoc>
</jxb:property>
</xsd:appinfo>
</xsd:annotation>
Am I missing something obvious? Are JAXB property customizations not permitted during an import?
Thank you very much for your time.