我遇到以下问题我正在使用 AlloyUI 在 Liferay 中实现一个 portlet
使用以下代码
<liferay-ui:search-container-row
className="com.handysoft.tp.model.TradingCategory"
keyProperty="cId"
modelVar="category">
<liferay-ui:search-container-column-text
name="category-name"
value="<%= category.getCName() %>" />
<liferay-ui:search-container-column-jsp
path="/admin/action.jsp"
align="right" />
</liferay-ui:search-container-row>
Portlet 仍然有效,但我遇到以下错误
jodd.bean.BeanException: Simple property not found: cId Invalid property: 'TradingCategoryImpl#cId'
如果我将一小部分更改为
<liferay-ui:search-container-column-text
name="category-name"
property="cName" />
错误发生在 cName 和 cId 中。什么都没有出现,你能帮我解决这个问题吗