我正在开发一个有两个控制器的Spring项目
AddOwnerForm.java& EditOwnerForm.java。两者都将流转发到form.jsp
AddOwnerForm将新的Owner对象传递给jsp,而EditOwnerForm从db中获取Owner对象,然后将其传递给jsp。
以下是JSP代码。
Form.jsp
<%@ include file="/WEB-INF/view/include.jsp" %>
<%@ include file="/WEB-INF/view/header.jsp" %>
<c:choose>
<c:when test="${owner['new']}"><c:set var="method" value="post"/></c:when>
<c:otherwise><c:set var="method" value="put"/></c:otherwise>
</c:choose>
<h2><c:if test="${owner['new']}">New </c:if>Owner:</h2>
<form:form modelAttribute="owner" method="${method}">
<table>
<tr>
<th>
First Name:
<br/>
<form:input path="firstName" size="30" maxlength="80"/>
</th>
</tr>
<tr>
<th>
Last Name:
<br/>
<form:input path="lastName" size="30" maxlength="80"/>
</th>
</tr>
<tr>
<th>
Address:
<br/>
<form:input path="address" size="30" maxlength="80"/>
</th>
</tr>
<tr>
<th>
City:
<br/>
<form:input path="city" size="30" maxlength="80"/>
</th>
</tr>
<tr>
<th>
Telephone:
<br/>
<form:input path="telephone" size="20" maxlength="20"/>
</th>
</tr>
<tr>
<td>
<c:choose>
<c:when test="${owner['new']}">
<p class="submit"><input type="submit" value="Add Owner"/></p>
</c:when>
<c:otherwise>
<p class="submit"><input type="submit" value="Update Owner"/></p>
</c:otherwise>
</c:choose>
</td>
</tr>
</table>
</form:form>
<%@ include file="/WEB-INF/view/footer.jsp" %>
我不明白这段代码
<c:choose>
<c:when test="${owner['new']}"><c:set var="method" value="post"/></c:when>
<c:otherwise><c:set var="method" value="put"/></c:otherwise>
</c:choose>
一个。 Jstl标记如何检查Owner对象是否为新对象。 “new”是JSTL的关键字吗?
B中。为什么他们使用PUT方法编辑所有者为什么不POST?
答案 0 :(得分:3)
我在这里添加我的答案以备记录,因为我搜索了很多,最后找到了正确的答案。
${owner['new']}
相当于
${owner.isNew()}
该方法在类BaseEntity.java中定义,该类是模型包中所有实体的超类。
public boolean isNew() {
return (this.id == null);
}
答案 1 :(得分:1)
一个。 Jstl标记如何检查Owner对象是否为新对象。 “new”是JSTL的关键字吗?
那不是检查一个对象是否是新的。它正在考虑owner
作为地图并尝试访问映射到键new
的元素。
相关:
B中。为什么他们使用PUT方法编辑所有者为什么不POST?
这取决于API。请注意,通常,浏览器不支持使用PUT方法提交表单。您需要使用javascript发送PUT请求。
回答你的评论,不。它认为owner
是实际的Map
。例如,
Map<String, Integer> owner = new HashMap<>();
map.put("new", someInt);
request.put("owner", owner);
// or
model.addAttribute("owner", owner);
然后你做
${owner['new']}
JSTL在内部做类似
的事情mapValue = (Map) request.getAttribute("owner");
value = owner.get("new");
并返回。