为了不在代码中重复自己,我使用modelAttribute
name 作为 java 常量
@Controller
@RequestMapping("/")
public class Controller {
public static final String MODEL_ATTRIBUTE = "myModel";
public String renderPage(Model model) {
model.addAttribute(MODEL_ATTRIBUTE, ...);
return "index";
}
}
现在我使用 scriptlet 将此常量导入 JSP(我知道 scriptlet 不好,但我不熟悉更好的解决方案)。
<%@page contentType="text/html" pageEncoding="UTF-8" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form" %>
<%@page import="static com.example.Controller.*" %>
<form:form action="/" modelAttribute="<%= MODEL_ATTRIBUTE %>">
<form:label path="attr1">Attribute:</form:label>
<form:input path="attr1" />
<c:forEach items="${???.attr2}" var="item">
...
</c:forEach>
<input type="submit" />
</form:form>
modelAttribute
我应该如何在 forEach 循环中引用对象?Spring 形式的DRY是否有更好的解决方案?