修改我的* -items.xml文件后无法生成类模型

时间:2015-02-12 09:57:28

标签: xml eclipse java-ee hybris

这是我的* -items.xml文件:

    <?xml version="1.0" encoding="ISO-8859-1"?>
<items   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:noNamespaceSchemaLocation="items.xsd">
    <enumtypes>
        <enumtype code="StadiumType" autocreate="true" generate="true" dynamic="false">
            <value code="openair"/>
            <value code="enclosed"/>
        </enumtype>
        <enumtype code="StadiumAccess" autocreate="true" generate="true" dynamic="true">
            <value code="road"/>
            <value code="rail"/>
            <value code="plane"/>
        </enumtype>
    </enumtypes>
    <relations>
        <relation code="StadiumMatchRelation"
                localized="false" generate="true" autocreate="true">
            <sourceElement type="Stadium" qualifier="stadium" cardinality="one"/>
            <targetElement type="Match" qualifier="matches" cardinality="many"/>
        </relation>
    </relations>

    <itemtypes>
        <itemtype code="Stadium" generate="true" autocreate="true">
            <deployment table="CuppyTrailStadium" typecode="10123" />
            <attributes>
                <attribute qualifier="code" type="java.lang.String" >
                    <persistence type="property"/>
                    <modifiers optional="false" unique="true"/>
                </attribute>
                <attribute qualifier="capacity" type="java.lang.Integer">
                    <description>Capacity</description>
                    <persistence type="property" />
                </attribute>
                <attribute type="StadiumType" qualifier="StadiumType">
                <persistence type="property"/>
                <defaultvalue>em().getEnumerationValue("StadiumType","openair")</defaultvalue>
                </attribute>
            </attributes>
        </itemtype>
    </itemtypes>
</items>

在cmd中使用“ant clean all”构建并刷新项目列表。 我无法在platform / bootstrap ...

下找到自动生成的模型类

任何建议?

ps:正在开发wiki.hybris.com教程

1 个答案:

答案 0 :(得分:1)

构建您的项目并在ide中刷新它。如果ant构建没有错误,它应该生成模型类。