- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在用于 jaxb 生成的 annox 插件上收到以下错误
[ERROR] file:/Users/dhiller/Space/ifp-core/framework/src/main/resources/schemas/common_2012_04.xsd[5,136]
org.xml.sax.SAXParseException: Unsupported binding namespace "http://annox.dev.java.net". Perhaps you meant "http://java.sun.com/xml/ns/jaxb/xjc"?
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb21-plugin</artifactId>
<version>0.8.1</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<args>
<arg>-XtoString</arg>
<arg>-Xequals</arg>
<arg>-XhashCode</arg>
<arg>-Xcopyable</arg>
</args>
<plugins>
<plugin>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics</artifactId>
<version>0.6.3</version>
</plugin>
</plugins>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>1.3.1</version>
<executions>
<execution>
<goals>
<goal>xjc</goal>
</goals>
</execution>
</executions>
<configuration>
<clearOutputDir>false</clearOutputDir>
<schemaDirectory>${basedir}/src/main/resources/schemas</schemaDirectory>
<schemaFiles>externalaction_2012_03.xsd,common_2012_04.xsd,utilities_2012_03.xsd</schemaFiles>
<outputDirectory>${project.build.directory}/generated-sources</outputDirectory>
<bindingDirectory>${basedir}/src/main/xjb</bindingDirectory>
<bindingFiles>bindings.xjb.xml</bindingFiles>
<extension>true</extension>
</configuration>
</plugin>
最佳答案
我认为您缺少来自 <plugin>
的一些依赖项.试试这个代码:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>xjc</id>
<goals>
<goal>xjc</goal>
</goals>
<configuration>
<extension>true</extension>
<arguments>-Xannotate</arguments>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics-annotate</artifactId>
<version>0.6.4</version>
</dependency>
<dependency>
<groupId>com.sun.codemodel</groupId>
<artifactId>codemodel</artifactId>
<version>2.6</version>
</dependency>
</dependencies>
</plugin>
关于jaxb annox 插件不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10565360/
我在用于 jaxb 生成的 annox 插件上收到以下错误 [ERROR] file:/Users/dhiller/Space/ifp-core/framework/src/main/resource
我在 JAXB 生成的类中有以下注释 @XmlType(name = "MessageInfoType", propOrder = { "debugTraceBoolean", "cl
我在让 JAXB 绑定(bind)文件与 annox 和 SCD 元素选择一起使用时遇到困难。该模式是一个简单的基本模式,具有名为 SongType 的 ComplexType。我尝试了正常的方法做如
我对注释的使用场景有点困惑,我希望得到您的意见。 给定以下注释(与 ExistingCustomerValidator 类在同一项目中定义)包 com.tktserver.constraints; @
我正在尝试通过 hyperjaxb 运行一个真实的模式。我已经使用 jaxb 反复测试了模式,并且 jaxb 每次都正确地导入了模式。但是,当我尝试让 hyperjaxb 从同一模式生成带 hiber
当我将 jxb:class 与 annox:annotate 一起使用时,出现此异常: com.sun.istack.SAXParseException2; systemId: file:/usr/w
我正在尝试使用 jaxb2 maven 插件从 xsd 生成 Java 类。 生成类时出现以下异常: SAXParseException Binding declaration namespace "
我是一名优秀的程序员,十分优秀!