1
在items.xml重新定義數據類型我有限定的數據類型作爲items.xml如下:在款Hybris
<attribute qualifier="daysOfWeek" type="java.lang.String">
<persistence type="property" />
</attribute>
要修改該數據類型枚舉,我重新定義它如下:
<enumtype code="DaysOfWeek" autocreate="true" generate="true">
<value code="Monday" />
<value code="Tuesday" />
</enumtype>
<attribute qualifier="daysOfWeek" type="DaysOfWeek">
<persistence type="property" />
</attribute>
更新擴展後,我得到了SQLException.Is這種方法有什麼問題嗎?