我想在 jstl 中将 List 设置为 null 但<c:remove>
我使用的标签会抛出
org.apache.jasper.JasperException
将列表设置为空的正确语法是什么?
提前致谢
<c:if test="${ not empty recList }">
<table>
<c:forEach items="${ recList }" var="charge">
<tr>
<td>${ charge.value }</td><td>${ charge.name }</td><td>${ charge.description }</td>
</tr>
</c:forEach>
</table>
<c:remove var="${ recList }" scope="session"/>
</c:if>