如何在 JSTL 的增强型 for 循环中使用 break。请检查我的代码 MyModelObject
@RequestMapping(value="/g/{domainId}/{userId}/{userName}/fullProfile.htm" ,method=RequestMethod.GET)
public String showFullProfile(@PathVariable("domainId")Long domainId,@PathVariable("userName")String userName,@PathVariable("userId")Long userId,Model model) throws Exception {
try {
List<Domains> domains = bal.getDomains();
model.put("domain",domains);
}
catch(Exception e)
{
}
return test;
}
测试.jsp
<c:forEach items="${domain}" var="domain">
${domain.departmentName}
</c:forEach>
我的问题是每次我只获取 6 条记录但是当我的 for 循环达到第 6 条记录时我想停止我的 for 循环我该怎么做