我正在使用castor 1.3.3-rc1,我一直对这个问题感到困惑。已经阅读过几次手册,我相信我已经完成了所有工作,但我一直在努力:
java.lang.IllegalArgumentException: object is not an instance of declaring class{File: [not available]; line: 4; column: 43}
解组我的xml。
这些是我的java类:
public class ReportConfiguration {
private List<ColumnMapping> columnMappings;
// getters and setters omitted
}
public class ColumnMapping {
private int index;
private String label;
private String sumTotal;
// getters and setters omitted
}
这是我的xml数据文件,它将被编组到上面的 这是我的脚本映射文件 我使用了Spring OXM,在我的应用程序上下文中创建了一个org.springframework.oxm.castor.CastorMarshaller实例,并将Unmarshaller实例作为依赖项注入。解组时我只是做这样的事情: 有人能发现我做错了什么/我怎么可以调试这个问题?<reportConfiguration>
<columnMappings>
<columnMapping index="0" label="Login"/>
<columnMapping index="1" label="Group"/>
<columnMapping index="2" label="Profit" sumTotal="yes"/>
</columnMappings>
</reportConfiguration>
<mapping>
<class name="my.company.ReportConfiguration">
<map-to xml="reportConfiguration"/>
<field name="columnMappings" collection="arraylist" type="my.company.ColumnMapping">
<bind-xml name="columnMappings"/>
</field>
</class>
<class name="my.company.ColumnMapping">
<map-to xml="columnMapping"/>
<field name="index" type="integer" required="true">
<bind-xml name="index" node="attribute"/>
</field>
<field name="label" type="string" required="true">
<bind-xml name="label" node="attribute"/>
</field>
<field name="sumTotal" type="string">
<bind-xml name="sumTotal" node="attribute"/>
</field>
</class>
</mapping>
ReportConfiguration config = (ReportConfiguration) unmarshaller.unmarshall(new StreamSource(inputStream));
答案 0 :(得分:4)
container="false"
属性:
<field name="columnMappings" collection="arraylist" type="my.company.ColumnMapping" container="false">
<bind-xml name="columnMappings"/>
</field>
这是蓖麻手册所说的:
container指示是否应将该字段视为a 容器,即只有它的字段应该是持久的,但不是 包含类本身。在这种情况下,容器属性应该 设置为true(仅在Castor XML中受支持)。
我认为默认值为true - 在这种情况下,castor希望直接在<columnMapping>
下找到<reportConfiguration>
的多个实例,而不包含在<columnMappings>
可以显示更有用的错误消息。