在Hybris中ant clean all之后,没有为items.xml中定义的itemtype生成相应的Model



我在items.xml中定义了一个新的Itemtype,我希望它有一个相应的Model,但在清除所有后,我没有看到生成的Model

这是定义的项目类型。

<itemtype code="ABCComponent" autocreate="true"
generate="true" extends="SimpleCMSComponent"
jaloclass="de.hybris.platform.bobs.jalo.cms.components.ABCComponent">
<description>Its my first custom component</description>
<attributes>
<attribute type="java.lang.String"
qualifier="valueDescriptionTittle">
<description>Tittle to display for the component</description>
<modifiers read="true" write="true" search="true"
optional="true" />
<persistence type="property"></persistence>
</attribute>
<attribute type="Media"
qualifier="valuePropositionImgDesktop">
<description>The image which can be attached for desktop view to this value proposition component.</description>
<modifiers read="true" write="true" search="true"
optional="true" />
<persistence type="property" />
</attribute>
</attributes>

有人能告诉我哪里出了问题吗。

为新项目使用自定义包名称(jalo类(,或者不设置,系统自动分配包名称。

try(对于需要初始化的项目(:

ant clean all initialize

最新更新