我正在试用jmesa。
在jmesa中,我正在创建工作表。然而,我得到这个错误,这并没有告诉我太多。
java.lang.IllegalStateException: The row unique property value is null! You need to specify the uniqueProperty on the row.
这是我的代码。
<jmesa:tableModel
id="tag"
items="${people}"
var="bean"
editable="true"
>
<%--editable="true"--%>
<jmesa:htmlTable caption="People you may know" width="900px" >
<jmesa:htmlRow>
<jmesa:htmlColumn property="selected" editable="true"
worksheetEditor="org.jmesa.worksheet.editor.CheckboxWorksheetEditor" title="selected" filterable="false" sortable="false"/>
<jmesa:htmlColumn property="firstName" editable="false"/>
<jmesa:htmlColumn property="lastName" title="Last Name" editable="false"/>
<jmesa:htmlColumn property="phone" title="Phone Number" editable="false"/>
<jmesa:htmlColumn property="address" title="Address" sortable="false" style="address" />
</jmesa:htmlRow>
</jmesa:htmlTable>
</jmesa:tableModel>
</form>
这个解决方案包括三个部分。我需要:
- 将此属性添加到
<jmesa:htmlRow>
标签:uniqueProperty="id"
, - 为Person类添加一个名为"id"的属性,这是该类的唯一标识符。
- 将WorksheetServlet添加到我的web.xml文件中,按照教程的说明。