我有一个xsd注释,我试图让Marshal成为一个java对象。我希望java最终得到BigDecimal的价值。我在xsd中输入什么才能使它成功?我正在使用xjc ant任务
<xjc schema="my.xsd" destdir="generated" header="false" extension="true" />
以下是相关的xsd -
<complexType name="Size">
<attribute name="height" type="BigDecimal"></attribute> <!-- this is wrong-->
</complexType>
我想以生成的类结束 -
public class Size {
@XmlAttribute(name = "height")
protected BigDecimal height;
}
答案 0 :(得分:8)
JAXB (JSR-222)实施将从java.math.BigDecimal
类型生成decimal
(参见表中的表6-1)
JAXB 2.2规范)。
XML架构(schema.xsd)
<?xml version="1.0" encoding="UTF-8"?>
<schema
xmlns="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.example.org/schema"
xmlns:tns="http://www.example.org/schema"
elementFormDefault="qualified">
<element name="foo">
<complexType>
<sequence>
<element name="bar" type="decimal"/>
</sequence>
</complexType>
</element>
</schema>
XJC致电
xjc schema.xsd
Java模型(Foo)
package org.example.schema;
import java.math.BigDecimal;
import javax.xml.bind.annotation.*;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {"bar"})
@XmlRootElement(name = "foo")
public class Foo {
@XmlElement(required = true)
protected BigDecimal bar;
...
}
答案 1 :(得分:1)
我想出来了。答案是使用binding.xjb类
绑定=
<jxb:javaType
name="java.math.BigDecimal"
xmlType="xs:decimal"/>
ant -
<xjc schema="my.xsd" destdir="generated" binding="myBinding.xjb" header="false" extension="true" />
xsd =
<attribute name="height" type="decimal"></attribute>
这意味着标记为十进制类型的任何内容都会变成一个大小数,但在我的情况下,这是正常的。希望这有助于其他人。