web-dev-qa-db-ja.com

java.util.Listはインターフェースであり、JAXBはインターフェースを処理できません

アプリケーションをデプロイしようとすると、次の例外が発生するようです。

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を削除してデフォルトを試してみましたが、同じ結果になります。ヘルプに感謝します

[〜#〜] update [〜#〜]

何かに注意したいです。すべてのリストをArrayListに変更し、コンパイルしました。私がコンパイルされて動作しなかったと言う理由は、奇妙に振る舞うからです。 RelationServiceStub.ArrayList型のオブジェクトを取得しますが、オブジェクトにgetメソッドがないか、Listとして動作しません。また、リストにキャストしようとしましたが、うまくいきませんでした。

これは、Axis 2とwsdl2Javaを使用した後であることに注意してください。そう、今ではコンパイルできますが、データを取得する方法がわかりません。

45
Shervin Asgari

私の理解では、JAXBはXMLに変換する方法を知らないため、JAXBを介してプレーンListを処理することはできません。

代わりに、List<RelationCanonical>Type1と呼びます)を保持するJAXB型と、それらの型のリストを保持する別の型を順番に定義する必要があります(処理中) with List<List<...>>;このタイプをType2と呼びます。

結果は、次のようなXML出力になります。

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

JAXBアノテーション付きの2つの型が含まれていない場合、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ガイド も確認する必要があります。

26
Henning

目的に合っている場合は、常に次のような配列を定義できます。

YourType[]

JAXBはそれが何であるかを確実に把握でき、クライアント側ですぐに使用できるはずです。また、リストからではなく、Webサービスによって提供されるメソッドからサーバーから取得した配列を変更できないため、そのようにすることをお勧めします。

8
Argo

任意のクラスでこれを行いたい場合。

return items.size() > 0 ? items.toArray((Object[]) Array.newInstance(
            items.get(0).getClass(), 0)) : new Object[0];
1
Nick