3

我写了一个类,它将由 xstream 转换为 xml 。

我添加了@XStreamAsAttribute 以将 xmlns 添加为属性。但它被添加为输出中的嵌套标签

我的类文件如下

@XStreamAlias("GetConfigurationParametersResponse")
public class GetConfigurationParametersResponse
    extends BaseResponse
{
    @XStreamAlias("xmlns")
    @XStreamAsAttribute
    final String xmlns = "http://www.collab.net/teamforge/integratedapp";

    @XStreamAlias("xmlns:ns2")
    @XStreamAsAttribute 
    final String ns2="http://www.collab.net/teamforge/integratedapp";


    @XStreamImplicit(itemFieldName="ConfigurationParameter")
    protected List<ConfigurationParameter> configurationParameter;

    public List<ConfigurationParameter> getConfigurationParameter() {
        if (configurationParameter == null) {
            configurationParameter = new ArrayList<ConfigurationParameter>();
        }
        return this.configurationParameter;
    }

}

输出如下

<com.collabnet.teamforge.ia.GetConfigurationParametersResponse>
<xmlns>http://www.collab.net/teamforge/integratedapp</xmlns>
<ns2>http://www.collab.net/teamforge/integratedapp</ns2>
</com.collabnet.teamforge.ia.GetConfigurationParametersResponse>

但我需要输出为

<com.collabnet.teamforge.ia.GetConfigurationParametersResponse xmlns="http://www.collab.net/teamforge/integratedapp" xmlns:ns2="http://www.collab.net/teamforge/integratedapp">
</com.collabnet.teamforge.ia.GetConfigurationParametersResponse>

请帮助找出我哪里出错了。我按照本教程http://x-stream.github.io/annotations-tutorial.html

4

2 回答 2

5

您可能需要执行以下操作:

xstream.processAnnotations(GetConfigurationParametersResponse.class);

如果仅调用以下内容:

 xstream.processAnnotations(BaseResponse.class);

然后您可以按如下方式使用@XStreamInclude注释:BaseResponse

@XStreamInclude({GetConfigurationParametersResponse.class})
public class BaseResponse {
}
于 2013-08-07T15:19:04.417 回答
1

对我有用的是:

xstream.autodetectAnnotations(true);
于 2015-08-11T21:10:34.887 回答