我正在使用 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 数据文件,它将被解组到上面的 java 类中
<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>
我使用了 Spring OXM,在我的应用程序上下文中创建了一个 org.springframework.oxm.castor.CastorMarshaller 实例,并注入了一个 Unmarshaller 实例作为依赖项。解组时我只是做这样的事情:
ReportConfiguration config = (ReportConfiguration) unmarshaller.unmarshall(new StreamSource(inputStream));
谁能发现我做错了什么/我还能如何调试这个问题?