在我的控制器中,我有一个如下所示的地图对象。
Map<String, Object> model = new HashMap<String, Object>();
Map<TblProjectPhase, List<TblProjectResource>> result=new HashMap<TblProjectPhase,List<TblProjectResource>>();
model.put("userList", result);
我要检查List TblProjectResource值是否为空,如下所示。
<c:when test="${model.userList.size()>0}">
<c:forEach var="user" items="${model.userList}">
<c:if test="${not empty user.value}">
hello
</c:if>
</c:when>
上述方法的问题是hello打印多个。如何检查列表此列表大小大于零而不使用foreach。
任何想法都将非常感谢!!!!