如何正确映射Castor xml

时间:2019-05-16 10:46:31

标签: xml castor

我最近在与蓖麻一起工作,我有一个问题。

我有这个xml文件,必须为其创建一个mapping.xml文件:

<tickets>
    <ticket userId="1" event="2" category="PREMIUM" place="20"/>
    <ticket userId="3" event="3" category="BAR" place="21"/>
    <ticket userId="4" event="4" category="STANDARD" place="22"/>
</tickets>

我的mapping.xml:

<mapping>
    <class name="TicketModel">

        <map-to xml="tickets" />

        <field name="userId" type="long">
            <bind-xml name="userId" node="attribute" />
        </field>

        <field name="eventId" type="long">
            <bind-xml name="eventId" node="attribute" />
        </field>

        <field name="category" type="enumeration.Category">
            <bind-xml name="category" node="attribute" />
        </field>

        <field name="place" type="integer">
            <bind-xml name="place" node="attribute" />
        </field>
    </class>
</mapping>

如何正确映射我的xml文件?

0 个答案:

没有答案