我正在使用 SimpleXML 在 Web 服务中生成 XML。但我在 SimplexML 中发现的是,生成的代码包含一个属性,该属性包含所表示对象的底层 Java 类类型。
因此,如果我使用存储在recentVisualisation
下面元素中的我的一个类的 Java ArrayList,我得到:
<User_Recent_Visualisations>
<userNo>025347_17042011_1303046799093</userNo>
<recentVisualisations class="java.util.ArrayList">
<recent_Visualisation recentVisNo="9" recentVisName="fred">
<createdDateTime>2013-06-28T14:09:17</createdDateTime>
</recent_Visualisation>
...
</User_Recent_Visualisations>
有谁知道该属性是否class="java.util.ArrayList">
可以被抑制?