使用castor解组对象列表会给出java.lang.IllegalArgumentException:object不是声明类的实例

时间:2013-02-14 01:26:21

标签: java xml unmarshalling castor

我正在使用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));

有人能发现我做错了什么/我怎么可以调试这个问题?

1 个答案:

答案 0 :(得分:4)

实际上,我找到了答案。我需要在castor映射上提供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>

可以显示更有用的错误消息。