Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JAXB Maven plugin won't generate Java Enum #270

Open
oliverunger opened this issue Sep 5, 2023 · 4 comments
Open

JAXB Maven plugin won't generate Java Enum #270

oliverunger opened this issue Sep 5, 2023 · 4 comments

Comments

@oliverunger
Copy link

I have the following snippet in my xsd file. I would expect that it generates a Java Enum with the two elements STANDALONE and CONNECTED.

<xs:attribute name="Sample">
  <xs:annotation>
    <xs:documentation>A sample</xs:documentation>
  </xs:annotation>
  <xs:simpleType>
    <xs:restriction base="xs:string">
      <xs:enumeration value="Standalone"/>
      <xs:enumeration value="Connected"/>
    </xs:restriction>
  </xs:simpleType>
</xs:attribute>

I'm using jaxb2-maven-plugin version 3.1.0

<plugin>
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>jaxb2-maven-plugin</artifactId>
  <executions>
    <execution>
      <id>gen-infrastructure</id>
      <goals>
        <goal>xjc</goal> <!-- Generates Java sources from XML Schema(s). -->
      </goals>
      <configuration>
        <locale>en,US</locale>
        <xjbSources>
          <xjbSource>src/main/resources/schema/xsd/sample.xjb</xjbSource>
        </xjbSources>
        <sources>
          <source>src/main/resources/schema/xsd/sample.xsd</source>
        </sources>
        <!-- The package of your generated sources -->
        <packageName>com.company.sample.model.pojos</packageName>
      </configuration>
    </execution>
  </executions>
  <configuration>
    <noGeneratedHeaderComments>true</noGeneratedHeaderComments>
    <clearOutputDir>false</clearOutputDir>
  </configuration>
</plugin>
@tstuber
Copy link

tstuber commented Dec 18, 2023

I faced the same issue. The following schema changes solved my issue:

  • xmlns:jaxb="http//java.sun.com/xml/ns/jaxb" to xmlns:jaxb="https://jakarta.ee/xml/ns/jaxb"
  • jaxb:version=2.0 to jaxb:version=3.0

@oliverunger
Copy link
Author

@tstuber Does not change anything for me

@lwiechec
Copy link

@oliverunger I have similar issue, it looks like this is the default behaviour of xjc (if I am wrong here, please correct me).

You can still configure xjc to generate enums through binding configuration (general info). Maybe this post would be helpful?

@oliverunger
Copy link
Author

I was able to narrow down the problem further:

JAXB will create an enum class for this:

 <xs:simpleType name="workingSample">
        <xs:annotation>
            <xs:documentation>Working sample</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="Hello"/>
            <xs:enumeration value="World"/>
        </xs:restriction>
    </xs:simpleType>

But will fail on this:

 <xs:attribute name="failingSample">
        <xs:annotation>
            <xs:documentation>Failing sample</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
            <xs:restriction base="xs:string">
                <xs:enumeration value="Lorem"/>
                <xs:enumeration value="Ipsum"/>
            </xs:restriction>
        </xs:simpleType>
    </xs:attribute>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants