List<ThresholdService> name = new ArrayList<ThresholdService>();
//// threshold是我的POJO课程的服务。
model.addAttribute(&#34; name&#34;,name);
以上是我的控制器类。现在我想编辑我的jsp上的内容。
<c:forEach var="val" items="${ser}">
<div id="value1" contenteditable><c:out value="${val.warningValue}" /></div>
</c:forEach>
在提交时我想更新java阈值对象的信息。