8

我正在使用作为 Jersey JAX-RS 一部分的 JAXB。当我为我的输出类型请求 JSON 时,我所有的属性名称都以这样的星号开头,

这个对象;

package com.ups.crd.data.objects;

import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;

@XmlType
public class ResponseDetails {
    @XmlAttribute public String ReturnCode = "";
    @XmlAttribute public String StatusMessage = "";
    @XmlAttribute public String TransactionDate ="";
}

变成了这个,

   {"ResponseDetails":{"@transactionDate":"07-12-2010",  
             "@statusMessage":"Successful","@returnCode":"0"}

那么,为什么名称中有@?

4

3 回答 3

9

在 JSON 中,任何使用 @XmlAttribute 映射的属性都将以“@”为前缀。如果您想删除它,只需使用 @XmlElement 注释您的属性。

大概这是为了避免潜在的名称冲突:

@XmlAttribute(name="foo") public String prop1;  // maps to @foo in JSON
@XmlElement(name="foo") public String prop2;  // maps to foo in JSON
于 2010-07-15T20:40:31.957 回答
1

如果您同时编组到 XML 和 JSON,并且您不需要它作为 XML 版本中的属性,那么建议使用 @XmlElement 是最好的方法。

但是,如果它需要成为 XML 版本中的属性(而不是元素),那么您确实有一个相当简单的替代方案。

您可以轻松设置一个JSONConfiguration关闭“@”插入的功能。

它看起来像这样:

@Provider
public class JAXBContextResolver implements ContextResolver<JAXBContext> {
private JAXBContext context;

public JAXBContextResolver() throws Exception {
    this.context=   new JSONJAXBContext(
        JSONConfiguration
            .mapped()
            .attributeAsElement("StatusMessage",...)
            .build(), 
            ResponseDetails.class); 
}

@Override
public JAXBContext getContext(Class<?> objectType) {
    return context;
}
}

这里还有一些其他的替代文档:

http://jersey.java.net/nonav/documentation/latest/json.html

于 2013-03-12T17:33:45.283 回答
0

您必须JSON_ATTRIBUTE_PREFIXJAXBContext配置中设置""默认为"@"

properties.put(JAXBContextProperties.JSON_ATTRIBUTE_PREFIX, ""); 
于 2016-12-22T14:03:56.780 回答