jstl 判断list是否为空
<%@ taglib uri="http://java.sun.com/jstl/c" prefix="c"%>
判断集合和对象是否为空:
list为集合,user为对象名
<c:choose>
<c:when test="${empty caseList}">
<div align="center">
<font size="5" face="华文行楷" color="blue"><strong>暂
无 病 历!</strong> </font>
<br>
</div>
</c:when>
<c:otherwise>
有病例
</c:otherwise>