axis2中的复杂类型 - Map

时间:2011-12-23 10:53:03

标签: java soap map axis2

我正在使用axis2实现Web服务。 我面临的问题是在其中一种方法中返回一个复杂的结构。 这是我想要做的:

作为返回类型 - Map<String, Pair[]>,其中Pair是

    public class Pair {

        private String key;
        private String value;
...........
}

我用SoapUI测试它

并且返回始终为空 这是一个简单的回复

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Body>
      <ns:getSNSTrendsResponse xmlns:ns="http://soap.sso.vwdcrm.app.mailprofiler.com">
         <ns:return xsi:type="ax211:SNSData" xmlns:ax212="http://util.java/xsd" xmlns:ax211="http://objects.soap.sso.vwdcrm.app.mailprofiler.com/xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <ax211:errorCode>1</ax211:errorCode>
            <ax211:errorMessage xsi:nil="true"/>
            <ax211:pairsResponse xsi:type="axis2ns2:anyType">
               <empty xmlns="http://www.w3.org/2001/XMLSchema">false</empty>
            </ax211:pairsResponse>
            <ax211:response xsi:nil="true"/>
         </ns:return>
      </ns:getSNSTrendsResponse>
   </soapenv:Body>
</soapenv:Envelope

其中pairResponse应包含结果......

1 个答案:

答案 0 :(得分:2)

Java泛型(例如,与数组类型相反)在编译期间被擦除,因此Axis Map<String, Pair[]>Map是一样的。

在Java SOAP中表示键到对象映射的常用方法是使用一个对象包含其键的数组。

在您的情况下,如果您的地图被Pair.key值编入索引,则使用Pair[]应该有效。