更新
已在 EclipseLink 2.4.1 和 2.5.0 流中签入一个修复程序。从2012 年 7 月 13 日开始,您可以从以下链接下载包含此修复程序的每晚标签:
EclipseLink JAXB (MOXy)会将数字类型编组为不带引号的 JSON。在这种情况下,@XmlSchemaType
注释的存在会导致问题。这是一个错误,您可以使用以下链接跟踪我们在此问题上的进展:
解决方法
MOXy 的外部映射文档可用于覆盖字段/属性级别的映射。我们将利用它重新映射count
属性以删除有问题的@XmlSchemaType
注释。
oxm.xml
<?xml version="1.0"?>
<xml-bindings
xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/oxm"
package-name="forum11448966">
<java-types>
<java-type name="Root">
<java-attributes>
<xml-element java-attribute="count"/>
</java-attributes>
</java-type>
</java-types>
</xml-bindings>
根
package forum11448966;
import java.math.BigInteger;
import javax.xml.bind.annotation.*;
@XmlAccessorType(XmlAccessType.FIELD)
public class Root {
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger count;
}
jaxb.properties
javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory
演示
package forum11448966;
import java.math.BigInteger;
import java.util.*;
import javax.xml.bind.*;
import org.eclipse.persistence.jaxb.JAXBContextProperties;
public class Demo {
public static void main(String[] args) throws Exception {
Map<String,Object> properties = new HashMap<String, Object>(3);
properties.put(JAXBContextProperties.OXM_METADATA_SOURCE, "forum11448966/oxm.xml");
properties.put(JAXBContextProperties.MEDIA_TYPE, "application/json");
properties.put(JAXBContextProperties.JSON_INCLUDE_ROOT, false);
JAXBContext jc = JAXBContext.newInstance(new Class[] {Root.class}, properties);
Root root = new Root();
root.count = BigInteger.TEN;
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(root, System.out);
}
}
输出
{
"count" : 10
}