如何在jstl中使用break for Enhanced for循环?

时间:2013-09-20 06:22:39

标签: jstl

如何在JSTL中使用break in Enhanced for循环。  请检查我的代码  的 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;
}

test.jsp的

              <c:forEach items="${domain}" var="domain">
                 ${domain.departmentName}

                </c:forEach>

我的问题是每次我只获取6条记录但是当我的for循环达到第6条记录时我想停止我的for循环我该怎么做

2 个答案:

答案 0 :(得分:0)

这是一个解决方案。请试一试,因为我没有测试过。

<c:set var="count" value="0" scope="page" />
<c:forEach items="${domain}" var="domain">
  <c:if test="${count < 6}">
    ${domain.departmentName}
    <c:set var="count" value="${count + 1}" scope="page" />
  </c:if>
</c:forEach>

答案 1 :(得分:0)

使用forEach的varStatus属性。

<c:forEach items="${domain}" var="domain" varStatus="status">
   <c:if test="${status.count le 6}">
      ${domain.departmentName}
   </c:if>
</c:forEach>