为什么我的一些属性只显示在jaxws的响应xml中?

时间:2010-04-27 12:32:05

标签: java xml jax-ws

我创建了一个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>
             ....

1 个答案:

答案 0 :(得分:1)

XML中未显示为null的属性。 在示例中,属性2为null,因此未显示。