判断集合是否为空
<c:if test="${!empty flowPackForList}">
.....
</c:if>
jsp中if判断
<c:if test="${flowType=='115' && flag!='1'}">
....
</c:if>
遍历集合 request set的集合 若集合中需要用到两个list中的数据 可以在后台将两个list拼成一个(新建一个bean存放)
<c:forEach items="${flowPackForList}" var="flowPackInfoList" varStatus="obj">
<tr>
<td> ${flowPackInfoList.subProjectNo}</td>
<td> ${flowPackInfoList.subProjectName}</td>
</tr>
</c:forEach>