使用 <c:if test="${empty requestScope.pageInfo.list}"></c:if>
jsp最前面加入标签<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
添加依赖
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>javax.servlet.jsp.jstl</artifactId>
<version>1.2.5</version>
</dependency>
<dependency>
<groupId>org.apache.karaf.assemblies.features</groupId>
<artifactId>standard</artifactId>
<version>2.4.4</version>
</dependency>
就可以使用了。
两个简单的用法<c:if test="${empty requestScope.pageInfo.list}">为真执行</c:if>
<c:forEach items="${requestScope.pageInfo.list}" var="admin"。。。。
循环遍历。