2

我正在我的应用程序中开发 RESTFul 服务。我们正在使用“ cxf-codegen-plugin ”从模式中生成 JAXB 类。对于给定的要求,我需要向生成的 JAXB 类添加一些注释,并且我试图为此使用Annotate Plugin(Annox)但在使用它时遇到问题。我收到org.xml.sax.SAXParseException:使用“ http://annox.dev.java.net ”自定义需要“-Xannotate”开关来启用此插件。

这就是我在我的代码库中进行设置的方式: 1. WSDL 指的是一个 XSD,其中我有注释的定义。2. pom.xml 使用'cxf-codegen-plugin' 来生成jabx 类。3. RESTFul 服务需要对生成的类进行一些额外的注释,所以我尝试使用 Annox 来完成工作。

这是来自 XSD 的片段:

<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="gov.nih.nci.po.webservices.types"
    xmlns:tns="gov.nih.nci.po.webservices.types" elementFormDefault="qualified"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc"    
    xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" jaxb:version="2.1"
    xmlns:annox="http://annox.dev.java.net"
    xmlns:ja="http://annox.dev.java.net/org.codehaus.jackson.annotate"
    xsi:schemaLocation="http://java.sun.com/xml/ns/jaxb http://java.sun.com/xml/ns/jaxb/bindingschema_2_0.xsd
                        http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema.xsd"
    jaxb:extensionBindingPrefixes="xjc annox">    

    <complexType name="PersonRole" abstract="true">
        <annotation>
            <appinfo>
                <annox:annotate>                    
                     <ja:JsonTypeInfo use="CLASS" include="PROPERTY" property="@class"/>
                </annox:annotate>                
            </appinfo>
        </annotation>
        <complexContent>
            <extension base="tns:Role">
                <sequence>
                    <element name="personId" type="long" />
                </sequence>
            </extension>
        </complexContent>
    </complexType>  
</schema>

这就是我希望我生成的类的样子:

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PersonRole", propOrder = { "personId" })
@XmlSeeAlso({ HealthCareProvider.class, OrganizationalContact.class,
        ClinicalResearchStaff.class })
@JsonTypeInfo(use = JsonTypeInfo.Id.CLASS, include = JsonTypeInfo.As.PROPERTY, property = "@class")
public abstract class PersonRole extends Role {

以下是 pom.xml 中的条目:

<plugin>
                <groupId>org.apache.cxf</groupId>
                <artifactId>cxf-codegen-plugin</artifactId>
                <version>${cxf.version}</version>
                <configuration>
                    <encoding>UTF-8</encoding>
                </configuration>
                <executions>
                    <execution>
                        <id>generate-sources</id>
                        <phase>generate-sources</phase>
                        <configuration>
                            <sourceRoot>${project.build.directory}/generated-sources</sourceRoot>
                            <wsdlOptions>
                                <wsdlOption>
                                    <wsdl>${basedir}/src/main/resources/PersonService.wsdl</wsdl>
                                    <extraargs>
                                        <extraarg>-xjc-Xannotate</extraarg>                                                                                                           </extraargs>                                    
                                </wsdlOption>                              
                                </wsdlOption>
                            </wsdlOptions>
                        </configuration>
                        <goals>
                            <goal>wsdl2java</goal>
                        </goals>
                    </execution>
                </executions>
                <dependencies>                   
                    <dependency>
                        <groupId>org.jvnet.jaxb2_commons</groupId>
                        <artifactId>jaxb2-basics-annotate</artifactId>
                        <version>0.6.0</version>
                    </dependency>                   
                    <dependency>
                        <groupId>org.codehaus.jackson</groupId>
                        <artifactId>jackson-core-asl</artifactId>
                        <version>${jackson.version}</version>
                        <scope>compile</scope>
                    </dependency>
                </dependencies>
            </plugin>

我还注意到,如果我在JsonTypeInfo部分下的 xsd 中提供了一些错误的值/配置,则构建失败并抱怨(例如缺少必填字段“use”等)——所以我假设 Annox 插件已启用并正在尝试做某事。但是当我使用上述配置时,构建失败并出现 SAXParseException:使用“ http://annox.dev.java.net ”自定义需要“-Xannotate”开关来启用此插件。

有人可以建议如何解决这个问题吗?

4

0 回答 0