我正在使用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应包含结果......
答案 0 :(得分:2)
Java泛型(例如,与数组类型相反)在编译期间被擦除,因此Axis Map<String, Pair[]>
与Map
是一样的。
在Java SOAP中表示键到对象映射的常用方法是使用一个对象包含其键的数组。
在您的情况下,如果您的地图被Pair.key
值编入索引,则使用Pair[]
应该有效。