java.util.List 是一个接口,JAXB 无法处理接口

2022-08-31 20:39:22

尝试部署应用程序时,我似乎遇到以下异常:

Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 2 counts of     IllegalAnnotationExceptions
java.util.List is an interface, and JAXB can't handle interfaces.
this problem is related to the following location:
    at java.util.List
    at private java.util.List     foobar.alkohol.register.webservice.jaxws.GetRelationsFromPersonResponse._return
    at     foobar.alkohol.register.webservice.jaxws.GetRelationsFromPersonResponse
java.util.List does not have a no-arg default constructor.
    this problem is related to the following location:
        at java.util.List
        at private java.util.List foobar.alkohol.register.webservice.jaxws.GetRelationsFromPersonResponse._return
    at     foobar.alkohol.register.webservice.jaxws.GetRelationsFromPersonResponse


我的代码运行良好,直到我将返回类型从List更改为List<List<RelationCanonical>>

下面是部分 Web 服务:


@Name("relationService")
@Stateless
@WebService(name = "RelationService", serviceName = "RelationService")
@SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
public class RelationService implements RelationServiceLocal {

    private boolean login(String username, String password) {
        Identity.instance().setUsername(username);
        Identity.instance().setPassword(password);
        Identity.instance().login();
        return Identity.instance().isLoggedIn();
    }

    private boolean logout() {
        Identity.instance().logout();
        return !Identity.instance().isLoggedIn();
    }

    @WebMethod
    public List<List<RelationCanonical>> getRelationsFromPerson(@WebParam(name = "username")
    String username, @WebParam(name = "password")
    String password, @WebParam(name = "foedselsnummer")
    String... foedselsnummer) {

......
......
......
}


我也尝试过删除@SOAPBinding并尝试默认,但出现相同的结果。感谢任何帮助

更新

我想指出一些事情。我将所有列表更改为ArrayList,然后编译。我之所以说编译而没有工作,是因为它表现得很奇怪。我得到一个对象类型:RelationServiceStub.ArrayList,但该对象没有get方法或也不表现为List。我也试图把它扔到一个列表中,但这不起作用。

请注意,这是在我使用Axis 2和wsdl2java之后,所以是的,现在它编译了,但我不知道如何获取数据。


答案 1

在我的理解中,您将无法通过 JAXB 处理一个普通代码,因为 JAXB 不知道如何将其转换为 XML。List

相反,您需要定义一个 JAXB 类型,该类型包含一个(我将称之为 ),另一个类型来保存这些类型的列表,依次(因为您正在处理一个 ;我称之为类型)。List<RelationCanonical>Type1List<List<...>>Type2

然后,结果可能是 XML 输出,如下所示:

<Type2 ...>
    <Type1 ...>
        <RelationCanonical ...> ... </RelationCanonical>
        <RelationCanonical ...> ... </RelationCanonical>
        ...
    </Type1>
    <Type1>
        <RelationCanonical ...> ... </RelationCanonical>
        <RelationCanonical ...> ... </RelationCanonical>
        ...
    </Type1>
    ...
</Type2>

如果没有两个封闭的 JAXB 注释类型,JAXB 处理器就不知道要生成什么标记,因此会失败。

--编辑:

我的意思是应该有点像这样:

@XmlType
public class Type1{

    private List<RelationCanonical> relations;

    @XmlElement
    public List<RelationCanonical> getRelations(){
        return this.relations;
    }

    public void setRelations(List<RelationCanonical> relations){
        this.relations = relations;
    }
}

@XmlRootElement
public class Type2{

    private List<Type1> type1s;

    @XmlElement
    public List<Type1> getType1s(){
        return this.type1s;
    }

    public void setType1s(List<Type1> type1s){
        this.type1s= type1s;
    }
}

您还应该查看 J5EE 教程中的 JAXB 部分和非官方 JAXB 指南


答案 2

如果这符合您的目的,您可以随时定义如下数组:

YourType[]

JAXB当然可以弄清楚那是什么,你应该能够立即在客户端使用它。我还建议您这样做,因为您不应该通过List修改从服务器检索到的数组,而是通过Web服务提供的方法。


推荐