我创建了一个jaxws webservice,但它只返回响应xml中我的对象的一些属性。
E.g。
public class MyObject {
private String attribute1;
private String attribute2;
//getter and setter
}
但返回的XML只包含
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:mynamespaceResponse xmlns:ns2="mynamespace">
<myObject>
<attribute1>stringcontent</attribute1>
</myObject>
....
答案 0 :(得分:1)
XML中未显示为null的属性。 在示例中,属性2为null,因此未显示。