我正在 Spring MVC 3 中创建 CRUD 应用程序。除了编辑页面之外,一切都运行良好。我希望我的编辑页面填充一些具有相关数据库生成值的标签,这样我就可以查看、编辑并保存它们。我在 modelAttribute 中传递了值列表以与 edit.jsp 共享。我可以在 edit.jsp 上检索它们的值,但是我无法将这些值放入标记中,因为它没有 value 属性。请帮忙。
Sharing the code below----------------------------
enter code here
<form:form id="form5" commandName="user" action="modify.htm">
<table>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
<c:forEach items="${userList}" var="user">
<tr>
<td> <form:input path="name" value="${user.name}"/></td>
<td><form:input path="age" value="{user.age}"/></td>
</tr>
</c:forEach>
<tr><td><button type="button" onclick="modify()">Save</button></td></tr>
</table>
</form:form>